summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01536f6986..f39fe22461 100644
--- a/Makefile
+++ b/Makefile
@@ -178,7 +178,19 @@ clean:
DISTFILES = $(shell find . \( -not -name '.' \) -print | grep -v CVS | grep -v "\.tar\.gz" | grep -v "\/\." | grep -v releases | grep -v BitKeeper | grep -v SCCS | grep -v "\.tdb" | grep -v "test\/sys" | sort )
DISTDIR := $(RELEASE_NAME)
srcdir = .
-release: $(DISTFILES) clean
+release: clean
+ @echo "--------------------------cut here------------------------"
+ @echo "cd .."
+ @echo "rm -rf $(DISTDIR)"
+ @echo "mkdir $(DISTDIR)"
+ @echo "chmod 777 $(DISTDIR)"
+ @echo "cp -avr udev/* $(DISTDIR)"
+ @echo "tar -c $(DISTDIR) | gzip -9 > $(RELEASE_NAME).tar.gz"
+ @echo "rm -rf $(DISTDIR)"
+ @echo "--------------------------cut here------------------------"
+
+
+small_release: $(DISTFILES) clean
# @echo $(DISTFILES)
@-rm -rf $(DISTDIR)
@mkdir $(DISTDIR)