diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -5,10 +5,10 @@ FOAF=http://njw.me.uk/card\#i MD=smu RSS=index.ttl -BIB=publications/index.ttl -BIBTXT=publications/index.txt +BIB=pubs/index.ttl +BIBTXT=pubs/index.txt PAGES=$(shell find . -name '*.txt' ! -name 'robots.txt' ! -name $(RSS)) $(BIBTXT) -PUBS=$(shell find ./publications/ -name '*.txt' ! -name 'index.*') +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) @@ -21,7 +21,7 @@ $(RSS): $(PAGES) echo making $@ sh makerss.sh $(SITENAME) $(FOAF) $* > $@ -publications/index.txt: $(BIB) +pubs/index.txt: $(BIB) echo making $@ sh bibtotxt.sh $< > $@ |