summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-03-07 18:41:01 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-03-07 18:41:01 +0900
commit035898c7215c417e2ba24e759c033710ac74c6cc (patch)
tree3dd6a7ec09dd8ac6e100fc58a47b54af98e1a7ad
parentfe1b4cea417847802de9be0bcde216752cd2e063 (diff)
parent8ee5b0196bdd47bcd89c276c63145610d89bcd9e (diff)
downloadmruby-035898c7215c417e2ba24e759c033710ac74c6cc.tar.gz
mruby-035898c7215c417e2ba24e759c033710ac74c6cc.zip
Merge pull request #1824 from unak/patch-1
.PHONY should be placed after `all'
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index d9a3437ad..9a7263872 100644
--- a/Makefile
+++ b/Makefile
@@ -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