aboutsummaryrefslogtreecommitdiff
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
parentacdf30527744181f2765c799c0c1ccc273a1b277 (diff)
Remove support for the dist target
-rw-r--r--build/bootstrap.make6
-rw-r--r--makefile6
2 files changed, 2 insertions, 10 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
diff --git a/makefile b/makefile
index 5d90ad8..ce34e39 100644
--- a/makefile
+++ b/makefile
@@ -8,7 +8,6 @@ include $(dir $(lastword $(MAKEFILE_LIST)))build/bootstrap.make
default := $(out_base)/
test := $(out_base)/.test
install := $(out_base)/.install
-dist := $(out_base)/.dist
clean := $(out_base)/.clean
# Build.
@@ -27,11 +26,6 @@ $(install): $(out_base)/cutl/.install \
$(call install-data,$(src_base)/NEWS,$(install_doc_dir)/libcutl/NEWS)
$(call install-data,$(src_base)/README,$(install_doc_dir)/libcutl/README)
-# Dist.
-#
-
-# @@ TODO
-
# Clean.
#
$(clean): $(out_base)/cutl/.clean $(out_base)/tests/.clean