.FAKE: all clean test all: hello clean: rm -f hello hello: hello.c musl-gcc -static -O2 -o hello hello.c test: hello ./hello