diff options
author | Eric Andersen | 1999-11-18 00:19:26 +0000 |
---|---|---|
committer | Eric Andersen | 1999-11-18 00:19:26 +0000 |
commit | ded6259f624c34f3bc221d1b2caee30fbcd729a4 (patch) | |
tree | cf1f7e4ffe1e24939dcfbc66d3bf0453081c5dc1 /Makefile | |
parent | d80e851dc05f978dded84b7ac9fcae7066e3ffe0 (diff) | |
download | busybox-ded6259f624c34f3bc221d1b2caee30fbcd729a4.zip busybox-ded6259f624c34f3bc221d1b2caee30fbcd729a4.tar.gz |
Latest and greatest0_36
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -17,7 +17,7 @@ PROG=busybox -VERSION=0.35 +VERSION=0.36 BUILDTIME=$(shell date "+%Y%m%d-%H%M") # Comment out the following to make a debuggable build @@ -107,6 +107,9 @@ install: busybox whichversion: @echo $(VERSION) + +dist: release + release: distclean - (cd .. ; cp -a busybox busybox-$(VERSION); tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)) + (cd .. ; rm -rf busybox-$(VERSION) ; cp -a busybox busybox-$(VERSION); rm -rf busybox-$(VERSION)/CVS busybox-$(VERSION)/.cvsignore ; tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)) |