Added a "publish" target.

The "publish" target creates a PDF file which has the fonts embedded.
pull/3/head
Michael Bredel 7 years ago committed by GitHub
parent 60e11dc575
commit f62623512b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      makefile

@ -8,6 +8,10 @@ all: clean
test -f ${MASTER}-blx.bib && ( bibtex ${MASTER}; pdflatex ${MASTER}.tex )
pdflatex ${MASTER}.tex
publish: all
@ps2pdf14 -dPDFSETTINGS=/prepress thesis.pdf
@mv thesis.pdf.pdf thesis.pdf
clean:
@rm -rf *run.xml *-blx.bib *.aux *.bbl *.blg *.brf *.log *.lof *.lot *.lol *.out *.tcp *.toc *.tps *.bak *.backup *.pdfsync *.synctex.gz *.*~
@for i in run.xml -blx.bib aux bbl blg brf log lof lot lol out tcp toc tps bak backup pdfsync synctex.gz; do find -name *.$$i -exec rm {} + ; done

Loading…
Cancel
Save