From 4d7ccf3ebec796e1775ca62483eff95fc1998df4 Mon Sep 17 00:00:00 2001 From: inglorion Date: Sun, 1 Dec 2013 02:44:56 +0100 Subject: [PATCH] also remove .s files when running make clean in test directory --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 09131aa..3abc722 100644 --- a/test/Makefile +++ b/test/Makefile @@ -13,7 +13,7 @@ TARGETS = auto-bytes auto-words at block bitwise bytes call div \ all : $(TARGETS) clean : - -for target in $(TARGETS); do rm "$$target.asm" "$$target.o"; done + -for target in $(TARGETS); do rm "$$target.asm" "$$target.o" "$$target.s"; done distclean : clean -rm $(TARGETS) -- 2.11.4.GIT