summaryrefslogtreecommitdiff
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
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>
-rw-r--r--Makefile2
-rw-r--r--man/Makefile5
2 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1d3e07a..8e2f23b 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ else
clean: # if configure hasn't run, nothing to clean
endif
-include/builddefs:
+configure include/builddefs:
autoconf
./configure \
--prefix=/ \
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)