Browse Source

Don't clean config system except on 'make distclean'. Remember to
clean locale stuff on 'make clean'

Eric Andersen 22 years ago
parent
commit
dec2c57bbf
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Makefile

+ 2 - 1
Makefile

@@ -354,7 +354,7 @@ clean:
 	$(MAKE) -C libc/misc/wchar clean
 	$(MAKE) -C libc/unistd clean
 	$(MAKE) -C libc/sysdeps/linux/common clean
-	$(MAKE) -C extra clean
+	$(MAKE) -C extra/gcc-uClibc extra/locale clean
 	@set -e; \
 	for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
 		rm -f include/sys/$$i; \
@@ -377,6 +377,7 @@ clean:
 
 distclean: clean
 	rm -f .config .config.old .config.cmd
+	$(MAKE) -C extra clean
 
 release: distclean
 	cd ..;					\