summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-18 15:18:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-18 15:18:15 +0200
commit780a199410056c9589f5868a836f565b452fb14e (patch)
treefacaad465a1d9e762b9b337fef73926a6131ade6 /build
parentef796634015330f4e5feb77e90d478d1bd54434d (diff)
Write getting started guide
Diffstat (limited to 'build')
-rw-r--r--build/bootstrap.make14
1 files changed, 8 insertions, 6 deletions
diff --git a/build/bootstrap.make b/build/bootstrap.make
index 204eaf2..1ac9807 100644
--- a/build/bootstrap.make
+++ b/build/bootstrap.make
@@ -26,18 +26,20 @@ $(call include,$(bld_root)/cxx/configuration.make)
# Aliases
#
-.PHONY: $(out_base)/ \
- $(out_base)/.test \
- $(out_base)/.install \
- $(out_base)/.clean
+.PHONY: $(out_base)/ \
+ $(out_base)/.test \
+ $(out_base)/.install \
+ $(out_base)/.clean \
+ $(out_base)/.cleandoc
ifdef %interactive%
-.PHONY: test install clean
+.PHONY: test install clean cleandoc
test: $(out_base)/.test
install: $(out_base)/.install
clean: $(out_base)/.clean
+cleandoc: $(out_base)/.cleandoc
endif
@@ -63,7 +65,7 @@ endif
# Don't include dependency info for certain targets.
#
-ifneq ($(filter $(MAKECMDGOALS),clean disfigure),)
+ifneq ($(filter $(MAKECMDGOALS),clean cleandoc disfigure),)
include-dep =
endif