diff options
author | kaa <kaa@laptosh.my.domain> | 2023-06-23 11:19:51 -0700 |
---|---|---|
committer | kaa <kaa@laptosh.my.domain> | 2023-06-23 11:19:51 -0700 |
commit | 8828e75a9ee7a5408ad00ad17e9878a2740cc866 (patch) | |
tree | bd60b53fb9896316ebc9928a30e0b0806b1c64ae /makefile |
"Initial."
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 |