blob: f1764496cff9b6ca24bfbd1877b8c3cc3cc971b6 (
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
41
42
43
44
45
46
47
48
|
# See COPYING file for copyright, license and warranty details.
SITENAME=http://njw.me.uk
FOAF=http://njw.me.uk/card\#i
MD=smu
RSS=index.ttl
BIB=pubs/index.ttl
BIBTXT=pubs/index.txt
PAGES=$(shell find . -name '*.txt' ! -name 'robots.txt' ! -name $(RSS)) $(BIBTXT)
PUBS=$(shell find ./pubs/ -name '*.txt' ! -name 'index.*')
EXTRAS=$(shell find . -name '*.css') card.ttl
TARGETS=$(PAGES:.txt=.xml) $(RSS) $(BIBTXT)
GZIP=$(PAGES:=.gz) $(TARGETS:=.gz) $(EXTRAS:=.gz) $(BIB:=.gz)
all: $(TARGETS) $(GZIP)
$(TARGETS): includes/header.xml includes/footer.xml
$(RSS): $(PAGES)
echo making $@
sh makerss.sh $(SITENAME) $(FOAF) $* > $@
pubs/index.txt: $(BIB)
echo making $@
sh bibtotxt.sh $< > $@
.txt.xml:
echo making $@
sed "s/TITLE/`head -n 1 < $<`/" < includes/header.xml > $@
$(MD) $< >> $@
sed "s/MODDATE/`ls -lc --time-style=+%Y-%m-%d $<|awk '{print $$6}'`/" < includes/footer.xml >> $@
.tex.pdf:
echo making $@
pdflatex -output-directory $(shell dirname $<) $*.tex
rm $*.aux $*.log $*.out
# not POSIX compatible
%.gz: %
echo compressing $<
gzip < $< > $@
clean:
rm -f -- $(TARGETS) $(GZIP)
.SUFFIXES: .txt .xml .rdf .pdf .tex .gz
.SILENT:
|