summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Osterlund <petero2@telia.com>2004-04-24 11:45:04 +0200
committerPeter Osterlund <petero2@telia.com>2006-04-09 04:02:16 +0200
commitcaf8a07cb5ea4c823baa904e9836d0745e657c1b (patch)
tree5f2f6e57ec580f9693bf07024cffb796df9fcaf4
parent8a9559c317c9c9cdb09c6f0e3e9ef206ce9acf67 (diff)
Always rebuild the tar.bz2 file. (Some dependencies were
missing and adding correct dependencies is not worth the trouble.)
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2324ffd..50e9dfa 100644
--- a/Makefile
+++ b/Makefile
@@ -125,7 +125,7 @@ ALLFILES = COMPATIBILITY FILES INSTALL INSTALL.DE INSTALL.FR LICENSE Makefile \
DST=synaptics-$(VERSION)
-synaptics-$(VERSION).tar.bz2 : $(ALLFILES)
+synaptics-$(VERSION).tar.bz2 : FORCE
rm -f $(DST).tar.bz2
rm -rf $(DST)
mkdir $(DST) $(DST)/manpages $(DST)/script $(DST)/test $(DST)/docs
@@ -138,3 +138,5 @@ synaptics-$(VERSION).tar.bz2 : $(ALLFILES)
tar cf $(DST).tar $(DST)
rm -rf $(DST)
bzip2 $(DST).tar
+
+.PHONY: FORCE