[BusyBox-cvs] busybox Makefile,1.270,1.271

Glenn McGrath bug1 at busybox.net
Fri Dec 20 06:03:50 UTC 2002


Update of /var/cvs/busybox
In directory winder:/tmp/cvs-serv9940

Modified Files:
	Makefile 
Log Message:
busybox target wasnt checking .depend, clean kbuild binaries only on distclean 


Index: Makefile
===================================================================
RCS file: /var/cvs/busybox/Makefile,v
retrieving revision 1.270
retrieving revision 1.271
diff -u -d -r1.270 -r1.271
--- Makefile	13 Dec 2002 22:53:28 -0000	1.270
+++ Makefile	20 Dec 2002 06:03:47 -0000	1.271
@@ -39,7 +39,7 @@
 -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 @@
 
 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 @@
 	- find . -name \*.a -exec rm -f {} \;
 
 distclean: clean
+	- $(MAKE) -C scripts/config clean
 	rm -f .config .config.old .config.cmd
 
 release: distclean #doc




More information about the busybox-cvs mailing list