|
@@ -6,21 +6,21 @@
|
|
|
# and has rules to run config.status should one of the .in files change.
|
|
# and has rules to run config.status should one of the .in files change.
|
|
|
|
|
|
|
|
# Input
|
|
# Input
|
|
|
-# BUILD - The build director
|
|
|
|
|
|
|
+# BUILDDIR - The build directory
|
|
|
# CONVERTED - List of files output by configure $(BUILD) is prepended
|
|
# CONVERTED - List of files output by configure $(BUILD) is prepended
|
|
|
# The caller must provide depends for these files
|
|
# The caller must provide depends for these files
|
|
|
# It would be a fairly good idea to run this after a cvs checkout.
|
|
# It would be a fairly good idea to run this after a cvs checkout.
|
|
|
-BUILD=build
|
|
|
|
|
|
|
+BUILDDIR=build
|
|
|
|
|
|
|
|
.PHONY: startup
|
|
.PHONY: startup
|
|
|
-startup: configure $(addprefix $(BUILD)/,$(CONVERTED))
|
|
|
|
|
|
|
+startup: configure $(addprefix $(BUILDDIR)/,$(CONVERTED))
|
|
|
|
|
|
|
|
configure: aclocal.m4 configure.in
|
|
configure: aclocal.m4 configure.in
|
|
|
autoconf
|
|
autoconf
|
|
|
aclocal.m4:
|
|
aclocal.m4:
|
|
|
aclocal -I buildlib
|
|
aclocal -I buildlib
|
|
|
-$(BUILD)/config.status: configure
|
|
|
|
|
- test -e $(BUILD) || mkdir $(BUILD)
|
|
|
|
|
- (HERE=`pwd`; cd $(BUILD) && $$HERE/configure)
|
|
|
|
|
-$(addprefix $(BUILD)/,$(CONVERTED)): $(BUILD)/config.status
|
|
|
|
|
- (cd $(BUILD) && ./config.status)
|
|
|
|
|
|
|
+$(BUILDDIR)/config.status: configure
|
|
|
|
|
+ test -e $(BUILDDIR) || mkdir $(BUILDDIR)
|
|
|
|
|
+ (HERE=`pwd`; cd $(BUILDDIR) && $$HERE/configure)
|
|
|
|
|
+$(addprefix $(BUILDDIR)/,$(CONVERTED)): $(BUILDDIR)/config.status
|
|
|
|
|
+ (cd $(BUILDDIR) && ./config.status)
|