mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 13:21:37 +00:00
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>
13 lines
134 B
Makefile
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:
|