blob: f8c4d0020e22ca9d827fd2fb2117b04de3dcf558 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|