reliant/hello/Makefile
2025-12-26 19:50:36 -08:00

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