summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile10
-rwxr-xr-xdepend.sh1
-rw-r--r--version.mk2
3 files changed, 9 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5392589..94ea797 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,4 @@
+### $Id$
### ALL CONFIGURATION SHOULD IN CONFIG.MK, NOT HERE
include config.mk
@@ -109,17 +110,18 @@ source-zip: arch/leocad-$(VERSION)-src.zip
arch/leocad-$(VERSION)-linux.zip: arch all
rm -f $@
- zip -r $@ bin docs examples
+ zip -r $@ *.txt bin docs examples -x 'CVS/*' -x '*/CVS/*'
arch/leocad-$(VERSION)-linux.tgz: arch all
rm -f $@
- tar cvzf $@ bin docs examples
+ tar --exclude=CVS -cvzf $@ *.txt bin docs examples
arch/leocad-$(VERSION)-src.tgz: arch veryclean
rm -f $@
- ( cd .. ; tar --exclude=leocad/arch/\* -cvzf leocad/$@ leocad )
+ ( cd .. ; tar --exclude=leocad/arch/\* --exclude=CVS \
+ -cvzf leocad/$@ leocad )
arch/leocad-$(VERSION)-src.zip: arch veryclean
rm -f $@
- ( cd .. ; zip -r leocad/$@ leocad -x leocad/arch/\* )
+ ( cd .. ; zip -r leocad/$@ leocad -x '*/arch/*' -x '*/CVS/*' )
diff --git a/depend.sh b/depend.sh
index 73c0eff..e640888 100755
--- a/depend.sh
+++ b/depend.sh
@@ -1,4 +1,5 @@
#!/bin/sh
+# $Id$
CC=$1
shift
diff --git a/version.mk b/version.mk
index 089aa67..63520d3 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,5 @@
+# $Id$
+#
MAJOR := 0
MINOR := 72
PATCHLVL := 1