Merge pull request #1824 from unak/patch-1

.PHONY should be placed after `all'
This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-03-07 18:41:01 +09:00
+3 -4
View File
@@ -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