summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleocad1999-11-14 08:52:18 +0000
committerleocad1999-11-14 08:52:18 +0000
commit652b1f8957d2bed9b2e1e6abcdbd0a37cda868f0 (patch)
treebb7640971e2100d0ca7b2076dd645719d57f17ac
parent7f7095565858ff4ed5748e39a46fe4c7ac964700 (diff)
Fixed archiving Makefile entries to skip CVS
Added CVS Id string to a few files. git-svn-id: http://svn.leocad.org/trunk@7 c7d43263-9d01-0410-8a33-9dba5d9f93d6
-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