university of tuebingen theme files
This commit is contained in:
24
Makefile
24
Makefile
@@ -1,29 +1,31 @@
|
||||
BASENAME=lines-example
|
||||
TEXFILES=$(wildcard *.tex)
|
||||
PDFFILES=$(TEXFILES:.tex=.pdf)
|
||||
BASENAMES=$(TEXFILES:.tex=.)
|
||||
|
||||
TEXFILE=$(BASENAME).tex
|
||||
PDFFILE=$(BASENAME).pdf
|
||||
all: talk again watchtalk clean cleanup help
|
||||
|
||||
all: talk again watchtalk clean cleanup cleanplots help
|
||||
|
||||
talk: $(PDFFILE)
|
||||
$(PDFFILE): $(TEXFILE) beamer*.sty
|
||||
talk: $(PDFFILES)
|
||||
talks: $(PDFFILES)
|
||||
$(PDFFILES): %.pdf : %.tex beamer*.sty
|
||||
pdflatex -interaction=scrollmode $< | tee /dev/stderr | fgrep -q "Rerun to get cross-references right" && pdflatex -interaction=scrollmode $< || true
|
||||
|
||||
again :
|
||||
pdflatex $(TEXFILE)
|
||||
for FILE in $(TEXFILES); do \
|
||||
pdflatex $(FILE) \
|
||||
done
|
||||
|
||||
|
||||
watchtalks : watchtalk
|
||||
watchtalk :
|
||||
while true; do ! make -q talk && make talk; sleep 0.5; done
|
||||
|
||||
|
||||
clean :
|
||||
rm -f *~
|
||||
rmtex $(BASENAME)
|
||||
rm -f $(PYTHONPDFFILES)
|
||||
rmtex $(BASENAMES)
|
||||
|
||||
cleanup : clean
|
||||
rm -f $(PDFFILE)
|
||||
rm -f $(PDFFILES)
|
||||
|
||||
help :
|
||||
@echo -e \
|
||||
|
||||
Reference in New Issue
Block a user