summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-08-02 17:24:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-08-02 17:24:00 +0200
commit49d7681be69dfb0f3f31e0091592f33e27a40c23 (patch)
treeb0ea6a410946afa5b6aaca232364b08397a87ea7 /build
parent48632d8e40fe75b8e06ae03aa97b778dca9a6ca6 (diff)
Initialize the build system
Diffstat (limited to 'build')
-rw-r--r--build/bootstrap.make49
1 files changed, 49 insertions, 0 deletions
diff --git a/build/bootstrap.make b/build/bootstrap.make
new file mode 100644
index 0000000..1df57a6
--- /dev/null
+++ b/build/bootstrap.make
@@ -0,0 +1,49 @@
+# file : build/bootstrap.make
+# author : Boris Kolpackov <boris@codesynthesis.com>
+# copyright : Copyright (c) 2009 Code Synthesis Tools CC
+# license : TBD
+
+project_name := CLI
+
+include build-0.3/bootstrap.make
+
+
+# Aliases
+#
+ifdef %interactive%
+
+.PHONY: test $(out_base)/.test \
+ install $(out_base)/.install \
+ dist $(out_base)/.dist \
+ clean $(out_base)/.clean
+
+test: $(out_base)/.test
+install: $(out_base)/.install
+dist: $(out_base)/.dist
+clean: $(out_base)/.clean
+
+ifneq ($(filter $(.DEFAULT_GOAL),test install 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
+$(call -include,$1)
+endef
+
+ifneq ($(filter $(MAKECMDGOALS),clean disfigure),)
+include-dep =
+endif