diff options
Diffstat (limited to 'test')
-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) |