aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-01-27 22:11:59 +0000
committerEric Andersen <andersen@codepoet.org>2003-01-27 22:11:59 +0000
commita99534354a538573770d2b9835856fcfc017dab1 (patch)
treed2592c1a1a56836e1e7daf0d1992802b075552ea
parent66a3af9d7c83e6b649caec4b6dd0cb252ddf76f1 (diff)
downloadbusybox-w32-a99534354a538573770d2b9835856fcfc017dab1.tar.gz
busybox-w32-a99534354a538573770d2b9835856fcfc017dab1.tar.bz2
busybox-w32-a99534354a538573770d2b9835856fcfc017dab1.zip
Don't wipe the config system on 'make clean'
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 55605af88..36fc4118f 100644
--- a/Makefile
+++ b/Makefile
@@ -209,16 +209,17 @@ clean:
209 docs/busybox.pdf docs/busybox.pod docs/busybox.net/busybox.html \ 209 docs/busybox.pdf docs/busybox.pod docs/busybox.net/busybox.html \
210 docs/busybox _install pod2htm* *.gdb *.elf *~ core 210 docs/busybox _install pod2htm* *.gdb *.elf *~ core
211 - rm -f busybox busybox.links libbb/loop.h .config.old .hdepend 211 - rm -f busybox busybox.links libbb/loop.h .config.old .hdepend
212 - rm -f scripts/split-include scripts/mkdep .*config.log 212 - rm -f .*config.log
213 - rm -rf include/config include/config.h
214 - find . -name .\*.flags -exec rm -f {} \; 213 - find . -name .\*.flags -exec rm -f {} \;
215 - find . -name .depend -exec rm -f {} \;
216 - find . -name \*.o -exec rm -f {} \; 214 - find . -name \*.o -exec rm -f {} \;
217 - find . -name \*.a -exec rm -f {} \; 215 - find . -name \*.a -exec rm -f {} \;
218 - $(MAKE) -C scripts/config clean
219 216
220distclean: clean 217distclean: clean
218 - rm -f scripts/split-include scripts/mkdep
219 - rm -rf include/config include/config.h
220 - find . -name .depend -exec rm -f {} \;
221 rm -f .config .config.old .config.cmd 221 rm -f .config .config.old .config.cmd
222 - $(MAKE) -C scripts/config clean
222 223
223release: distclean #doc 224release: distclean #doc
224 cd ..; \ 225 cd ..; \