summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorYuichiro MASUI <[email protected]>2012-04-23 03:06:01 +0900
committerYuichiro MASUI <[email protected]>2012-04-23 03:06:01 +0900
commitf9d4a5a02b206a2020738ce09049d2a220ebe1d4 (patch)
tree18460b9f55dbc03f9c50c5ad5db1a627d8004b26 /Makefile
parent2b9ed5acd140a95b3178b40eaf698955d7ff21eb (diff)
downloadmruby-f9d4a5a02b206a2020738ce09049d2a220ebe1d4.tar.gz
mruby-f9d4a5a02b206a2020738ce09049d2a220ebe1d4.zip
Fixed to forget to remove some files on 'make clean'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 76f4ef594..55988683b 100644
--- a/Makefile
+++ b/Makefile
@@ -113,8 +113,10 @@ $(OBJM) : $(MSRC)
.PHONY : clean
clean :
$(MAKE) clean -C src $(MAKE_FLAGS)
+ $(MAKE) clean -C tools/mrbc $(MAKE_FLAGS)
$(MAKE) clean -C tools/mruby $(MAKE_FLAGS)
-rm -f $(EXE) $(OBJM)
-rm -f $(OBJM:.o=.d)
+ -rm -f $(patsubst %.c,%.o,$(EXCEPT1)) $(patsubst %.c,%.d,$(EXCEPT1))
-rm -f $(IOSLIB) $(IOSSIMLIB) $(IOSDEVLIB)
@echo "make: removing targets, objects and depend files of `pwd`"