diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-22 01:03:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-22 01:03:55 +0000 |
commit | 12afa83a99dc9f8080a0487127b86371fcde2435 (patch) | |
tree | 840af702e2cd7ed0d67edafc865110364b353d5e /test/Test.mak | |
parent | 467c76b0c7f5463ab034041e0350926a4c60eeb2 (diff) |
make sure we clean everything
Diffstat (limited to 'test/Test.mak')
-rw-r--r-- | test/Test.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Test.mak b/test/Test.mak index e3586da6f..24499fa4b 100644 --- a/test/Test.mak +++ b/test/Test.mak @@ -25,6 +25,7 @@ endif ifeq ($(UCLIBC_ONLY),) TARGETS += $(G_TARGETS) endif +CLEAN_TARGETS := $(U_TARGETS) $(G_TARGETS) test check all: $(TARGETS) # dummy rule to prevent the "Nothing to be done for `all'." message @@ -95,4 +96,4 @@ endif clean: $(showclean) - $(Q)$(RM) *.a *.o *.so *~ core *.out $(TARGETS) $(EXTRA_CLEAN) + $(Q)$(RM) *.a *.o *.so *~ core *.out $(CLEAN_TARGETS) $(EXTRA_CLEAN) |