X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=331c65cd70c266c3cef55ca9a6ed7278b1a94bee;hb=6e017b796214315c5df54cf94b2504e0cff2a711;hp=a0b130edc7c686774b989b9eb5695d778d3332c2;hpb=2b1f0e0db1196390852c1cec5917a0ce7f4d24df;p=mjotex.git diff --git a/makefile b/makefile index a0b130e..331c65c 100644 --- a/makefile +++ b/makefile @@ -27,10 +27,12 @@ MJOTEX += mjo-theorem-star.tex mjo-topology.tex # variable should contain all (Bib)TeX source files for the document. SRCS = $(PN).tex ifdef BIBS -SRCS += $(shell kpsewhich $(BIBS)) +BIBPATHS = $(shell kpsewhich $(BIBS)) +SRCS += $(BIBPATHS) endif ifdef MJOTEX -SRCS += $(shell kpsewhich $(MJOTEX)) +MJOTEXPATHS = $(shell kpsewhich $(MJOTEX)) +SRCS += $(MJOTEXPATHS) endif @@ -124,7 +126,8 @@ check: # Clean up leftover junk. .PHONY: clean clean: - rm -f *.{aux,bbl,bcf,bib,blg,listing,lof,log,nav,out,pdf,snm,toc,xml} + rm -f *.{aux,bbl,bcf,bib,blg,listing,lof,log} + rm -f *.{nav,out,pdf,snm,spl,toc,xml} rm -rf dist/ # If this document will be published, the publisher isn't going to @@ -135,4 +138,4 @@ clean: .PHONY: dist dist: $(PN).bbl mkdir -p dist - cp $(SRCS) $(PN).bbl dist/ + cp $(SRCS) $(PN).bbl $(BIBPATHS) $(MJOTEXPATHS) dist/