diff options
author | Denis Vlasenko | 2006-12-12 22:31:15 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-12-12 22:31:15 +0000 |
commit | 5fa7148761097d067c3f6723ca55c6284d1152ac (patch) | |
tree | 94e33f089502ba8625c31f72b93ae365e906d9d0 /Makefile.custom | |
parent | 16c2c700fd26825fbd3e9591b5f590f5d2abf65d (diff) | |
download | busybox-5fa7148761097d067c3f6723ca55c6284d1152ac.zip busybox-5fa7148761097d067c3f6723ca55c6284d1152ac.tar.gz |
build system: add "release" target
find: support -size N (needed for above)
Diffstat (limited to 'Makefile.custom')
-rw-r--r-- | Makefile.custom | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile.custom b/Makefile.custom index d257f6d..816bee5 100644 --- a/Makefile.custom +++ b/Makefile.custom @@ -42,6 +42,22 @@ check test: busybox bindir=$(objtree) srcdir=$(srctree)/testsuite SED="$(SED)" \ $(SHELL) $(srctree)/testsuite/runtest $(if $(KBUILD_VERBOSE:1=),-v) +.PHONY: release +release: distclean + cd ..; \ + rm -r -f busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION); \ + cp -a busybox busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) && \ + find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type d \ + -name .svn \ + -print \ + -exec rm -r -f {} \; && \ + find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type f \ + -name .\#* \ + -print \ + -exec rm -f {} \; && \ + tar -czf busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION).tar.gz \ + busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/; + .PHONY: checkhelp checkhelp: $(Q)$(srctree)/scripts/checkhelp.awk \ |