diff options
author | Nick White <git@njw.me.uk> | 2010-06-16 12:19:32 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-06-16 12:19:32 +0100 |
commit | 0d57bf7780e7dcf978193c80db1282a68113728a (patch) | |
tree | ff67c3b7c662a2af4b62bf71c676c36245da999d /Makefile | |
parent | 1a7b05e417fbdb46730f35e468fb0a178d85a67a (diff) | |
download | njw-website-0d57bf7780e7dcf978193c80db1282a68113728a.tar.bz2 njw-website-0d57bf7780e7dcf978193c80db1282a68113728a.zip |
Move publications to pubs
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 $< > $@ |