summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2013-04-28 22:14:05 +0100
committerVincent Sanders <vince@kyllikki.org>2013-04-28 22:14:05 +0100
commit0d03c5fbf0b1cc00fb176c9e5ed8e745869018ac (patch)
tree2f6b6efce0ca55139e1938b684b613563a425265
parent526b03ad2ba260269f3741bfd59448a8b0f6de2f (diff)
downloadbuildsystem-0d03c5fbf0b1cc00fb176c9e5ed8e745869018ac.tar.gz
buildsystem-0d03c5fbf0b1cc00fb176c9e5ed8e745869018ac.tar.bz2
add dummy clean targets
ensure targets declared phony bump version number ready for next release
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5c1ee82..07873ba 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,9 @@
# Component settings
COMPONENT := buildsystem
-COMPONENT_VERSION := 1.0
+COMPONENT_VERSION := 1.1
+
+.PHONY:all usage install dist clean distclean
all: usage
@@ -47,3 +49,9 @@ dist:
$(if $(subst $(GIT_VER),,$(COMPONENT_VERSION)), $(error Component Version "$(COMPONENT_VERSION)" and GIT tag version "$(GIT_VER)" do not match))
$(eval DIST_FILE := $(COMPONENT)-${GIT_VER})
$(Q)git archive --format=tar.gz --prefix=$(DIST_FILE)/ -o $(DIST_FILE).tar.gz $(GIT_TAG)
+
+# dummy clean target
+clean:
+
+# dummy distribution clean target
+distclean: