aboutsummaryrefslogtreecommitdiff
path: root/build/bootstrap.make
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-30 15:50:24 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-30 15:50:24 +0200
commit289a99b42a16d69e9f97cef705669e04a3217581 (patch)
tree131301ca74003dce0c3e7bdea4d69cf53d0a3835 /build/bootstrap.make
parent2fe6da790e143e082bb512502b8d92c1f19ee870 (diff)
Support for automake and VC++ builds
Diffstat (limited to 'build/bootstrap.make')
-rw-r--r--build/bootstrap.make24
1 files changed, 16 insertions, 8 deletions
diff --git a/build/bootstrap.make b/build/bootstrap.make
index 2c7f963..18e0c18 100644
--- a/build/bootstrap.make
+++ b/build/bootstrap.make
@@ -19,25 +19,33 @@ endif
# Aliases
#
-.PHONY: $(out_base)/ \
- $(out_base)/.test \
- $(out_base)/.install \
+.PHONY: $(out_base)/ \
+ $(out_base)/.test \
+ $(out_base)/.dist \
$(out_base)/.clean
ifdef %interactive%
-.PHONY: test install clean
+.PHONY: test dist clean
-test: $(out_base)/.test
-install: $(out_base)/.install
-clean: $(out_base)/.clean
+test: $(out_base)/.test
+dist: $(out_base)/.dist
+clean: $(out_base)/.clean
-ifneq ($(filter $(.DEFAULT_GOAL),test install clean),)
+ifneq ($(filter $(.DEFAULT_GOAL),test dist clean),)
.DEFAULT_GOAL :=
endif
endif
+# Make sure the distribution prefix is set if the goal is dist.
+#
+ifneq ($(filter $(MAKECMDGOALS),dist),)
+ifeq ($(dist_prefix),)
+$(error dist_prefix is not set)
+endif
+endif
+
# Don't include dependency info for certain targets.
#
define include-dep