diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-11-17 10:26:43 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-11-17 10:26:43 +0000 |
commit | a892a3f95d54b4d1854b628b68bc79583ad36ec8 (patch) | |
tree | 17756cea69498f430fd7a817804b8206bad7fc50 /Makefile | |
parent | 22fd89f8278dee327c9f4fa4a60e9bb52d9685cf (diff) | |
download | busybox-w32-a892a3f95d54b4d1854b628b68bc79583ad36ec8.tar.gz busybox-w32-a892a3f95d54b4d1854b628b68bc79583ad36ec8.tar.bz2 busybox-w32-a892a3f95d54b4d1854b628b68bc79583ad36ec8.zip |
Use the PROG variable instead of 'busybox' in the release target
git-svn-id: svn://busybox.net/trunk/busybox@7928 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -232,20 +232,20 @@ distclean: clean | |||
232 | 232 | ||
233 | release: distclean #doc | 233 | release: distclean #doc |
234 | cd ..; \ | 234 | cd ..; \ |
235 | rm -rf busybox-$(VERSION); \ | 235 | rm -rf $(PROG)-$(VERSION); \ |
236 | cp -a busybox busybox-$(VERSION); \ | 236 | cp -a busybox $(PROG)-$(VERSION); \ |
237 | \ | 237 | \ |
238 | find busybox-$(VERSION)/ -type d \ | 238 | find $(PROG)-$(VERSION)/ -type d \ |
239 | -name CVS \ | 239 | -name CVS \ |
240 | -print \ | 240 | -print \ |
241 | -exec rm -rf {} \; ; \ | 241 | -exec rm -rf {} \; ; \ |
242 | \ | 242 | \ |
243 | find busybox-$(VERSION)/ -type f \ | 243 | find $(PROG)-$(VERSION)/ -type f \ |
244 | -name .\#* \ | 244 | -name .\#* \ |
245 | -print \ | 245 | -print \ |
246 | -exec rm -f {} \; ; \ | 246 | -exec rm -f {} \; ; \ |
247 | \ | 247 | \ |
248 | tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; | 248 | tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; |
249 | 249 | ||
250 | tags: | 250 | tags: |
251 | ctags -R . | 251 | ctags -R . |