diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-07 18:41:01 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-07 18:41:01 +0900 |
| commit | 035898c7215c417e2ba24e759c033710ac74c6cc (patch) | |
| tree | 3dd6a7ec09dd8ac6e100fc58a47b54af98e1a7ad | |
| parent | fe1b4cea417847802de9be0bcde216752cd2e063 (diff) | |
| parent | 8ee5b0196bdd47bcd89c276c63145610d89bcd9e (diff) | |
| download | mruby-035898c7215c417e2ba24e759c033710ac74c6cc.tar.gz mruby-035898c7215c417e2ba24e759c033710ac74c6cc.zip | |
Merge pull request #1824 from unak/patch-1
.PHONY should be placed after `all'
| -rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -4,15 +4,14 @@ RAKE = ruby ./minirake -.PHONY : all all : $(RAKE) +.PHONY : all -.PHONY : test test : all $(RAKE) test +.PHONY : test -.PHONY : clean clean : $(RAKE) clean - +.PHONY : clean |
