summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@sandeen.net>2008-12-30 23:44:53 +0100
committerChristoph Hellwig <hch@brick.lst.de>2008-12-30 23:44:53 +0100
commit0fdad2b7fc9f37144950bccddbbfe9b22f115042 (patch)
tree25c9f9af7bc3ab087f680915f007f7075a129fe4 /man
parenta19636b505df47d9b0476b63a79ed8116130dfc7 (diff)
downloadacl-0fdad2b7fc9f37144950bccddbbfe9b22f115042.tar.gz
fix up xfs-cmds build after the parallel-fest
My big parallel build patch lost the "make configure" target. This broke Makepkgs... Now, IMHO, running configure from make is a little bass-ackwards; I'd probably prefer to have Makepkgs explicitly run: autoconf; configure --myoptions; make but for now, this adds back in a workable "make configure" target. Also fixed "make install-lib" for acl, which was failing in the man subdir. Signed-off-by: Eric Sandeen <sandeen@sandeen.net> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'man')
-rw-r--r--man/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/man/Makefile b/man/Makefile
index 155a0fb..bfc9346 100644
--- a/man/Makefile
+++ b/man/Makefile
@@ -13,10 +13,15 @@ install : $(addsuffix -install,$(SUBDIRS))
install-dev : $(addsuffix -install-dev,$(SUBDIRS))
+install-lib: $(addsuffix -install-lib,$(SUBDIRS))
+
%-install:
$(MAKE) -C $* install
%-install-dev:
$(MAKE) -C $* install-dev
+%-install-lib:
+ $(MAKE) -C $* install-lib
+
include $(BUILDRULES)