diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -6,11 +6,12 @@ MD=smu RSS=index.ttl BIB=publications/index.ttl -PAGES=$(shell find . -name '*.txt' ! -name 'robots.txt' ! -name $(RSS)) +BIBTXT=publications/index.txt +PAGES=$(shell find . -name '*.txt' ! -name 'robots.txt' ! -name $(RSS)) $(BIBTXT) PUBS=$(shell find ./publications/ -name '*.txt' ! -name 'index.*') EXTRAS=$(shell find . -name '*.css') card.ttl -TARGETS=$(PAGES:.txt=.xml) $(RSS) # $(PUBS:.txt=.pdf) -GZIP=$(PAGES:=.gz) $(TARGETS:=.gz) $(EXTRAS:=.gz) +TARGETS=$(PAGES:.txt=.xml) $(RSS) $(BIBTXT) +GZIP=$(PAGES:=.gz) $(TARGETS:=.gz) $(EXTRAS:=.gz) $(BIB:=.gz) all: $(TARGETS) $(GZIP) |