cgi-test/Makefile

7 lines
126 B
Makefile
Raw Permalink Normal View History

default: src/hello-world.c
test -d out || mkdir out; cc -o out/hello-world src/hello-world.c
clean:
test -d && rm -rf out