]> gitweb.michael.orlitzky.com - mjotex.git/blobdiff - makefile
Ensure that the bibtex database and mjotex files get copied to dist/.
[mjotex.git] / makefile
index a0b130edc7c686774b989b9eb5695d778d3332c2..331c65cd70c266c3cef55ca9a6ed7278b1a94bee 100644 (file)
--- 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/