From 652b1f8957d2bed9b2e1e6abcdbd0a37cda868f0 Mon Sep 17 00:00:00 2001 From: leocad Date: Sun, 14 Nov 1999 08:52:18 +0000 Subject: 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 --- Makefile | 10 ++++++---- depend.sh | 1 + version.mk | 2 ++ 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 -- cgit v1.2.3