diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2014-07-28 16:20:04 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2014-08-01 11:24:26 +0800 |
commit | c43847fe14e6b32cc58b8e8168f78e72ef94316d (patch) | |
tree | 4593c0e9d6adc4af40450a92aa4414109f9d29a4 /man | |
parent | 6c0dd46749cd791f3923e0d60f41d7a5e1033945 (diff) | |
download | petitboot-c43847fe14e6b32cc58b8e8168f78e72ef94316d.zip petitboot-c43847fe14e6b32cc58b8e8168f78e72ef94316d.tar.gz |
autotools: Use non-recursive make
With the current testing infrastructure, we don't have a strictly
hierarchical set of dependencies. This causes problems with a recursive
make, and means we have to hack around some of the dependencies.
This change generates a single, top-level makefile from all of the
Makefile.am fragments. We still need the po/ directory as a separate
SUBDIR, but all others can be converted to non-recursive.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index 75a6bc3..a299625 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -12,6 +12,11 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -dist_man_MANS = pb-console.8 pb-discover.8 pb-event.8 petitboot-nc.8 petitboot-twin.8 pb-udhcpc.8 petitboot.8 - -MAINTAINERCLEANFILES = Makefile.in +dist_man_MANS = \ + man/pb-console.8 \ + man/pb-discover.8 \ + man/pb-event.8 \ + man/petitboot-nc.8 \ + man/petitboot-twin.8 \ + man/pb-udhcpc.8 \ + man/petitboot.8 |