13 lines
133 B
Makefile
13 lines
133 B
Makefile
.FAKE: all clean test
|
|
|
|
all: hello
|
|
|
|
clean:
|
|
rm -f hello
|
|
|
|
hello: hello.c
|
|
musl-gcc -static -O2 -o hello hello.c
|
|
|
|
test: hello
|
|
./hello
|
|
|