Browse Source

make sure we clean everything

Mike Frysinger 19 years ago
parent
commit
12afa83a99
1 changed files with 2 additions and 1 deletions
  1. 2 1
      test/Test.mak

+ 2 - 1
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)