diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-11-17 10:26:43 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-11-17 10:26:43 +0000 |
commit | 0874a613d2b56901ec73965fd0eff7d650744801 (patch) | |
tree | 17756cea69498f430fd7a817804b8206bad7fc50 | |
parent | 8dc8cb133c482441f45aebb63376702d152b52ba (diff) | |
download | busybox-w32-0874a613d2b56901ec73965fd0eff7d650744801.tar.gz busybox-w32-0874a613d2b56901ec73965fd0eff7d650744801.tar.bz2 busybox-w32-0874a613d2b56901ec73965fd0eff7d650744801.zip |
Use the PROG variable instead of 'busybox' in the release target
-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 . |