diff options
-rw-r--r-- | Makefile | 30 |
1 files changed, 14 insertions, 16 deletions
@@ -221,7 +221,6 @@ include/bb_config.h: include/config.h | |||
221 | 221 | ||
222 | include/bbconfigopts.h: .config | 222 | include/bbconfigopts.h: .config |
223 | scripts/config/mkconfigs >include/bbconfigopts.h | 223 | scripts/config/mkconfigs >include/bbconfigopts.h |
224 | |||
225 | 224 | ||
226 | finished2: | 225 | finished2: |
227 | $(SECHO) | 226 | $(SECHO) |
@@ -296,20 +295,20 @@ distclean: clean | |||
296 | - $(MAKE) -C scripts/config clean | 295 | - $(MAKE) -C scripts/config clean |
297 | 296 | ||
298 | release: distclean #doc | 297 | release: distclean #doc |
299 | cd ..; \ | 298 | cd ..; \ |
300 | rm -rf $(PROG)-$(VERSION); \ | 299 | rm -rf $(PROG)-$(VERSION); \ |
301 | cp -a busybox $(PROG)-$(VERSION); \ | 300 | cp -a busybox $(PROG)-$(VERSION); \ |
302 | \ | 301 | \ |
303 | find $(PROG)-$(VERSION)/ -type d \ | 302 | find $(PROG)-$(VERSION)/ -type d \ |
304 | -name CVS \ | 303 | -name CVS \ |
305 | -print \ | 304 | -print \ |
306 | -exec rm -rf {} \; ; \ | 305 | -exec rm -rf {} \; ; \ |
307 | \ | 306 | \ |
308 | find $(PROG)-$(VERSION)/ -type f \ | 307 | find $(PROG)-$(VERSION)/ -type f \ |
309 | -name .\#* \ | 308 | -name .\#* \ |
310 | -print \ | 309 | -print \ |
311 | -exec rm -f {} \; ; \ | 310 | -exec rm -f {} \; ; \ |
312 | \ | 311 | \ |
313 | tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; | 312 | tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; |
314 | 313 | ||
315 | tags: | 314 | tags: |
@@ -322,4 +321,3 @@ endif # ifeq ($(skip-makefile),) | |||
322 | 321 | ||
323 | .PHONY: dummy subdirs release distclean clean config oldconfig \ | 322 | .PHONY: dummy subdirs release distclean clean config oldconfig \ |
324 | menuconfig tags check test depend buildtree | 323 | menuconfig tags check test depend buildtree |
325 | |||