diff options
Diffstat (limited to 'makefile')
-rwxr-xr-x | makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100755 index 0000000..f8c4d00 --- /dev/null +++ b/makefile @@ -0,0 +1,12 @@ +CC = cc +CFLAGS = -g -Wall +LDFLAGS = -static + +all: files drawn/monthly composed photographed/monthly + +.c: + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< + +clean: + rm -f files drawn/monthly composed photographed/monthly + rm -f files.html files.html.bup drawn/*.html drawn/*.html.bup composed.html photographed/*.html photographed/*.html.bup |