blob: f4b632ff49f6f35b05db938f42525940202df1bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DOCUMENT_BASE =
MEDIA_BASE =
SSIFLAGS = -D DOCUMENT_BASE=$(DOCUMENT_BASE) -D MEDIA_BASE=$(MEDIA_BASE)
srcs =
objs = $(srcs:.mdwn=.html)
.SUFFIXES:
.SUFFIXES: .mdwn .html
all: $(objs)
$(objs): Makefile includes/header.html includes/footer.html
.mdwn.html:
markdown $< | ssic -o $@ $(SSIFLAGS) -
clean:
rm -f $(objs)
|