Explorar o código

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 %!s(int64=7) %!d(string=hai) anos
pai
achega
13b859b789
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  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: