aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-12-20 06:03:47 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-12-20 06:03:47 +0000
commite86e4a228282e77b5ee5c718399ffaea26de4815 (patch)
tree5c64dc98d88539e67a35f1f1a6dcb2b13eba8dde /Makefile
parent0f18271a8a565f003790a2cf6a8426308e0d229c (diff)
downloadbusybox-e86e4a228282e77b5ee5c718399ffaea26de4815.tar.gz
busybox target wasnt checking .depend, clean kbuild binaries only on distclean
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 58e397cfd..c34b32bc1 100644
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,7 @@ all: busybox busybox.links #doc
-include .config.cmd
include $(patsubst %,%/Makefile.in, $(DIRS))
-busybox: depend $(libraries-y)
+busybox: .depend $(libraries-y)
$(CC) $(LDFLAGS) -o $@ $(libraries-y) $(LIBRARIES)
$(STRIPCMD) $@
@@ -203,7 +203,6 @@ check: busybox
clean:
- $(MAKE) -C tests clean
- - $(MAKE) -C scripts/config clean
- rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
docs/busybox.net/BusyBox.html
- rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
@@ -218,6 +217,7 @@ clean:
- find . -name \*.a -exec rm -f {} \;
distclean: clean
+ - $(MAKE) -C scripts/config clean
rm -f .config .config.old .config.cmd
release: distclean #doc