소스 검색

Runtime/Makefile: all goal should be default

Since clean rule is first target, just "make" means "make clean" as default goal.
This is a surprise. usually "make" means "make all".
So move all rule to the first target.

Signed-off-by: Isaku Yamahata <isaku.yamahata@gmail.com>
Isaku Yamahata 6 년 전
부모
커밋
13b859b789
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      Runtime/Makefile

+ 3 - 3
Runtime/Makefile

@@ -1,10 +1,10 @@
+.PHONY: all
+all:
+
 .PHONY: clean
 clean:
 	rm -f *.a *.o *.so *.so.* pal_gdb* pal-* pal_sec*
 
-.PHONY: all
-all:
-
 .PHONY: format
 format: