blob: 5c4556140109e99f4dc1dd31a8a40a5b8cd0b4b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# See COPYING file for copyright, license and warranty details.
SITENAME=njw.me.uk
MARKDOWN=smu
RSS=rss.rdf
PAGES=$(shell find . -name '*.txt' ! -name 'robots.txt' ! -name $(RSS))
EXTRAS=$(shell find . -name '*.css') foaf.n3
TARGETS=$(PAGES:.txt=.xml) $(RSS)
GZIP=$(PAGES:=.gz) $(TARGETS:=.gz) $(EXTRAS:=.gz)
all: $(TARGETS) $(GZIP)
$(TARGETS): includes/header.xml includes/footer.xml
$(RSS): $(PAGES)
@echo making $@
@sh makerss.sh $(SITENAME) $* > $@
index.xml: index.txt includes/header-index.xml includes/footer.xml
@echo making $@
@sed "s/TITLE/`head -n 1 < $<`/" < includes/header-index.xml > $@
@$(MARKDOWN) $< >> $@
@sed "s/MODDATE/`ls -lc $<|awk '{print $$6}'`/" < includes/footer.xml >> $@
.txt.xml:
@echo making $@
@sed "s/TITLE/`head -n 1 < $<`/" < includes/header.xml > $@
@$(MARKDOWN) $< >> $@
@sed "s/MODDATE/`ls -lc $<|awk '{print $$6}'`/" < includes/footer.xml >> $@
# bug: if any target changes, all are recompressed
$(GZIP): $(TARGETS)
@echo compressing $*
@gzip < $* >> $@
clean:
rm -f -- $(TARGETS) $(GZIP)
.SUFFIXES: .txt .xml .rdf .gz
|