diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-12-20 06:03:47 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-12-20 06:03:47 +0000 |
commit | e86e4a228282e77b5ee5c718399ffaea26de4815 (patch) | |
tree | 5c64dc98d88539e67a35f1f1a6dcb2b13eba8dde | |
parent | 0f18271a8a565f003790a2cf6a8426308e0d229c (diff) | |
download | busybox-w32-e86e4a228282e77b5ee5c718399ffaea26de4815.tar.gz busybox-w32-e86e4a228282e77b5ee5c718399ffaea26de4815.tar.bz2 busybox-w32-e86e4a228282e77b5ee5c718399ffaea26de4815.zip |
busybox target wasnt checking .depend, clean kbuild binaries only on distclean
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -39,7 +39,7 @@ all: busybox busybox.links #doc | |||
39 | -include .config.cmd | 39 | -include .config.cmd |
40 | include $(patsubst %,%/Makefile.in, $(DIRS)) | 40 | include $(patsubst %,%/Makefile.in, $(DIRS)) |
41 | 41 | ||
42 | busybox: depend $(libraries-y) | 42 | busybox: .depend $(libraries-y) |
43 | $(CC) $(LDFLAGS) -o $@ $(libraries-y) $(LIBRARIES) | 43 | $(CC) $(LDFLAGS) -o $@ $(libraries-y) $(LIBRARIES) |
44 | $(STRIPCMD) $@ | 44 | $(STRIPCMD) $@ |
45 | 45 | ||
@@ -203,7 +203,6 @@ check: busybox | |||
203 | 203 | ||
204 | clean: | 204 | clean: |
205 | - $(MAKE) -C tests clean | 205 | - $(MAKE) -C tests clean |
206 | - $(MAKE) -C scripts/config clean | ||
207 | - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ | 206 | - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ |
208 | docs/busybox.net/BusyBox.html | 207 | docs/busybox.net/BusyBox.html |
209 | - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \ | 208 | - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \ |
@@ -218,6 +217,7 @@ clean: | |||
218 | - find . -name \*.a -exec rm -f {} \; | 217 | - find . -name \*.a -exec rm -f {} \; |
219 | 218 | ||
220 | distclean: clean | 219 | distclean: clean |
220 | - $(MAKE) -C scripts/config clean | ||
221 | rm -f .config .config.old .config.cmd | 221 | rm -f .config .config.old .config.cmd |
222 | 222 | ||
223 | release: distclean #doc | 223 | release: distclean #doc |