aboutsummaryrefslogtreecommitdiff
path: root/build/bootstrap.make
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-11 16:03:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-11 16:03:04 +0200
commitfeb7f86a3a861fba97eae15a7f8b38c818a6cbbe (patch)
tree081670ba007dcdfd1c38092353468d19ec659ee7 /build/bootstrap.make
parentacdf30527744181f2765c799c0c1ccc273a1b277 (diff)
Remove support for the dist target
Diffstat (limited to 'build/bootstrap.make')
-rw-r--r--build/bootstrap.make6
1 files changed, 2 insertions, 4 deletions
diff --git a/build/bootstrap.make b/build/bootstrap.make
index 7720553..6333423 100644
--- a/build/bootstrap.make
+++ b/build/bootstrap.make
@@ -22,19 +22,17 @@ endif
.PHONY: $(out_base)/ \
$(out_base)/.test \
$(out_base)/.install \
- $(out_base)/.dist \
$(out_base)/.clean
ifdef %interactive%
-.PHONY: test install dist clean
+.PHONY: test install 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),)
+ifneq ($(filter $(.DEFAULT_GOAL),test install clean),)
.DEFAULT_GOAL :=
endif