blob: 48fb2e504e5bf48ece3ebc105a98adc2f3fcc9b5 (
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 neols
.c:
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
clean:
rm -f files drawn/monthly composed photographed/monthly neols
rm -f files.html files.html.bup drawn/*.html drawn/*.html.bup composed.html photographed/*.html photographed/*.html.bup
|