diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2002-11-07 17:49:07 +0000 | 
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2002-11-07 17:49:07 +0000 | 
| commit | 5e816a6bb9043ad5b7bd0671313772481331d3e6 (patch) | |
| tree | 2f5700c320e60c412fdd0e0730ee06ed2cec8bab | |
| parent | 38b77276710b395581a69bb693a79c9974908a46 (diff) | |
Fixed makefiles to remove binaries generated for the configuration
menu system when doing a 'make clean'.
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | extra/Makefile | 2 | ||||
| -rw-r--r-- | extra/config/Makefile | 1 | 
3 files changed, 3 insertions, 2 deletions
@@ -338,7 +338,7 @@ clean:  	$(MAKE) -C libc/misc/internals clean  	$(MAKE) -C libc/unistd clean  	$(MAKE) -C libc/sysdeps/linux/common clean -	$(MAKE) -C extra/gcc-uClibc clean +	$(MAKE) -C extra clean  	@set -e; \  	for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \  		rm -f include/sys/$$i; \ diff --git a/extra/Makefile b/extra/Makefile index 14ce2d5ed..e32daef36 100644 --- a/extra/Makefile +++ b/extra/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)Rules.mak  LIBC=$(TOPDIR)libc.a -DIRS = gcc-uClibc +DIRS = gcc-uClibc config  all: subdirs diff --git a/extra/config/Makefile b/extra/config/Makefile index c782ce4eb..383dee551 100644 --- a/extra/config/Makefile +++ b/extra/config/Makefile @@ -80,4 +80,5 @@ endif  clean:  	rm -f *.o *~ core $(TARGETS) $(MCONF_OBJS) $(CONF_OBJS) \  		conf mconf zconf.tab.c zconf.tab.h lex.zconf.c lkc_defs.h +	$(MAKE) -C lxdialog clean  | 
