cgi-test/Makefile
William Brawner 7bc6be3edd Initial commit
Signed-off-by: William Brawner <me@wbrawner.com>
2020-07-02 15:39:12 -07:00

6 lines
126 B
Makefile

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