summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2010-03-08 15:51:15 +0000
committerBart De Schuymer <bdschuym@pandora.be>2010-03-08 15:51:15 +0000
commitc69d23138d2d90672ae23735336abb3eb3657631 (patch)
tree0c029b2852762ace3a92ce8cb79b3dc492c9f2d1 /Makefile
parent469e79f3c98e587b566bd5f326dcf6311e928302 (diff)
touch each file and set the permissions for a release
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4222a21..d4d420f 100644
--- a/Makefile
+++ b/Makefile
@@ -71,4 +71,5 @@ CVSDIRS:=CVS extensions/CVS libarptc/CVS include/CVS include/libarptc/CVS includ
release:
rm -rf $(CVSDIRS)
make clean
- cd ..;tar -c $(DIR) | gzip >$(DIR).tar.gz
+ cd ..;find $(DIR) -exec touch {} \;;find $(DIR) -exec chmod o-r,g-r,o-w,g-w,o-x,g-x {} \;;tar -pc $(DIR) | gzip >$(DIR).tar.gz
+