summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2013-11-28 15:36:59 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2013-11-28 15:36:59 +0100
commit85f42ed2da9ab51a16d53843b9710a675c4d140b (patch)
tree477b1d279d0af2d231df5d1bfcff7667f6890642 /Makefile
parentf7c142734879f1f1ae786d0c4fa72887c53adb64 (diff)
downloadldetect-lst-85f42ed2da9ab51a16d53843b9710a675c4d140b.tar
ldetect-lst-85f42ed2da9ab51a16d53843b9710a675c4d140b.tar.gz
ldetect-lst-85f42ed2da9ab51a16d53843b9710a675c4d140b.tar.bz2
ldetect-lst-85f42ed2da9ab51a16d53843b9710a675c4d140b.tar.xz
ldetect-lst-85f42ed2da9ab51a16d53843b9710a675c4d140b.zip
no need to run "make clean" anymore when building tarball
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 53edda2c..1aa9977b 100644
--- a/Makefile
+++ b/Makefile
@@ -29,8 +29,8 @@ install: build
dist: dis
-dis: clean
- @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz >../$(NAME)-$(VERSION).tar.xz;
+dis:
+ :git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz >../$(NAME)-$(VERSION).tar.xz;
$(info $(shell dirname $$PWD)/$(NAME)-$(VERSION).tar.xz is ready)
# Makefile ends here