Files
Seminararbeit_2020/makefile
Michael Bredel f62623512b Added a "publish" target.
The "publish" target creates a PDF file which has the fonts embedded.
2017-11-12 00:37:52 +01:00

32 lines
1.2 KiB
Makefile

MASTER = thesis
VERSION = v4.4
NAME = Max
SURNAME = Mustermann
all: clean
pdflatex ${MASTER}.tex
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
@find -name *.*~ -exec rm {} +
cleanall: clean
@rm *.pdf
bz2: clean
@echo 'creating package including Docs'
@tar --exclude-vcs -cf `pwd`/../${MASTER}-${NAME}_${SURNAME}-${VERSION}-`date +%Y%m%d`.tar `pwd`/../`pwd | sed "s,^\(.*/\)\?\([^/]*\),\2,"`
@bzip2 `pwd`/../${MASTER}-${NAME}_${SURNAME}-${VERSION}-`date +%Y%m%d`.tar
bz2-small: clean
@echo 'creating package excluding Docs'
@tar --exclude-vcs --exclude=Docs -cf `pwd`/../${MASTER}-${NAME}_${SURNAME}-${VERSION}-`date +%Y%m%d`_small.tar `pwd`/../`pwd | sed "s,^\(.*/\)\?\([^/]*\),\2,"`
@bzip2 `pwd`/../${MASTER}-${NAME}_${SURNAME}-${VERSION}-`date +%Y%m%d`_small.tar