diff options
author | Peter Osterlund <petero2@telia.com> | 2004-04-24 11:45:04 +0200 |
---|---|---|
committer | Peter Osterlund <petero2@telia.com> | 2006-04-09 04:02:16 +0200 |
commit | caf8a07cb5ea4c823baa904e9836d0745e657c1b (patch) | |
tree | 5f2f6e57ec580f9693bf07024cffb796df9fcaf4 | |
parent | 8a9559c317c9c9cdb09c6f0e3e9ef206ce9acf67 (diff) |
Always rebuild the tar.bz2 file. (Some dependencies were
missing and adding correct dependencies is not worth the trouble.)
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |