Files
graphene/Runtime/Makefile
Isaku Yamahata 13b859b789 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>
2019-02-04 10:07:53 -05:00

13 lines
134 B
Makefile

.PHONY: all
all:
.PHONY: clean
clean:
rm -f *.a *.o *.so *.so.* pal_gdb* pal-* pal_sec*
.PHONY: format
format:
.PHONY: pack
pack: