diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-11-20 20:30:02 +0100 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-22 11:29:12 -0800 |
commit | ad8359c14a3e0049aee5ce504ff3efc4c73c3e9c (patch) | |
tree | 2a5668fd2f0d55c520460a5ddacf1c7189312d3d | |
parent | fc2ac79fa1324c7d96150d879bbfe26fd7c5c9d4 (diff) | |
download | uClibc-alpine-ad8359c14a3e0049aee5ce504ff3efc4c73c3e9c.tar.bz2 uClibc-alpine-ad8359c14a3e0049aee5ce504ff3efc4c73c3e9c.tar.xz |
realclean: wipe kconfig objects
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r-- | Makefile.in | 3 | ||||
-rw-r--r-- | Makerules | 2 | ||||
-rw-r--r-- | extra/config/Makefile | 4 |
3 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 5954b6bad..941aa89aa 100644 --- a/Makefile.in +++ b/Makefile.in @@ -436,6 +436,9 @@ defconfig: $(top_builddir)extra/config/conf $(Q)$(top_builddir)extra/config/conf -d extra/Configs/Config.in \ -D extra/Configs/defconfigs/$(ARCH) +menuconfig-clean-y: + $(Q)$(MAKE) -C extra/config menuconfig_clean + include_clean: $(Q)$(RM) $(top_builddir)include/fpu_control.h $(top_builddir)include/dl-osinfo.h $(top_builddir)include/hp-timing.h @set -e; \ @@ -435,7 +435,7 @@ files.dep := $(libc-a-y) $(libc-so-y) $(libc-nonshared-y) \ FORCE: clean: objclean-y headers_clean-y -realclean: clean +realclean: clean menuconfig-clean-y $(Q)$(RM) $(.depends.dep) objclean-y: $(objclean-y) diff --git a/extra/config/Makefile b/extra/config/Makefile index 7d8a1e4ad..04175e541 100644 --- a/extra/config/Makefile +++ b/extra/config/Makefile @@ -73,8 +73,8 @@ $(obj)/%:: $(top_srcdir)$(src)/%_shipped @$(disp_gen) $(Q)cat $< > $@ endif -clean: - $(do_rm) $(clean-files) conf +menuconfig_clean: + $(do_rm) $(clean-files) conf $(wildcard *.o) distclean: clean $(do_rm) $(lxdialog) $(conf-objs) $(mconf-objs) \ $(kxgettext-objs) \ |