diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-04-22 18:50:39 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-04-22 18:50:39 -0700 |
| commit | 3f0b98762d4a49beb7cc3f9cc8a8dfcee4aa5f6f (patch) | |
| tree | 984930118bb2bd0905d23237107483103954e182 | |
| parent | 1f87caa2c76bc3b522455b400ab1ff362bfeaa15 (diff) | |
| parent | 359fe9dfdc80d846ad419e64cbaa4bb8ec29cd7c (diff) | |
| download | mruby-3f0b98762d4a49beb7cc3f9cc8a8dfcee4aa5f6f.tar.gz mruby-3f0b98762d4a49beb7cc3f9cc8a8dfcee4aa5f6f.zip | |
Merge pull request #42 from takahashim/fix-clean-mrblib
Force to remove mrblib/mrblib.d
| -rw-r--r-- | mrblib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mrblib/Makefile b/mrblib/Makefile index 8fc808cc4..ef60654fd 100644 --- a/mrblib/Makefile +++ b/mrblib/Makefile @@ -59,6 +59,7 @@ $(RLIB) : $(MRBS) .PHONY : clean clean : -rm -f $(MRBC) $(MLIB) $(CLIB) $(RLIB) $(DLIB) + -rm -f $(patsubst %.c,%.d,$(CLIB)) -rm -f $(patsubst %.c,%.o,$(EXCEPT1)) $(patsubst %.c,%.d,$(EXCEPT1)) @echo "make: removing targets, objects and depend files of `pwd`" |
