diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,9 +1,10 @@ # See COPYING file for copyright, license and warranty details. -SITENAME=njw.me.uk +SITENAME=http://njw.me.uk +FOAF=http://njw.me.uk/foaf\#i MARKDOWN=smu -RSS=rss.rdf +RSS=rss.n3 PAGES=$(shell find . -name '*.txt' ! -name 'robots.txt' ! -name $(RSS)) EXTRAS=$(shell find . -name '*.css') foaf.n3 TARGETS=$(PAGES:.txt=.xml) $(RSS) @@ -13,9 +14,9 @@ all: $(TARGETS) $(GZIP) $(TARGETS): includes/header.xml includes/footer.xml -$(RSS): $(PAGES) +$(RSS): $(PAGES) makerss.sh @echo making $@ - @sh makerss.sh $(SITENAME) $* > $@ + @sh makerss.sh $(SITENAME) $(FOAF) $* > $@ index.xml: index.txt includes/header-index.xml includes/footer.xml @echo making $@ @@ -30,7 +31,7 @@ index.xml: index.txt includes/header-index.xml includes/footer.xml @sed "s/MODDATE/`ls -lc $<|awk '{print $$6}'`/" < includes/footer.xml >> $@ # bug: if any target changes, all are recompressed -$(GZIP): $(TARGETS) +$(GZIP): $(TARGETS) $(EXTRAS) @echo compressing $* @gzip < $* >> $@ |