mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-19 11:38:05 +02:00
documents/Warteschlangen: Added makefile for building / cleaning
This commit is contained in:
parent
e6b6504bfc
commit
292712ec48
1 changed files with 23 additions and 0 deletions
23
documents/Warteschlangen/Makefile
Normal file
23
documents/Warteschlangen/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
DOKUMENT = warteschlangen
|
||||
|
||||
make:
|
||||
pdflatex $(DOKUMENT).tex -interaction=batchmode -output-format=pdf # aux-files for makeindex / makeglossaries
|
||||
pdflatex $(DOKUMENT).tex -interaction=batchmode -output-format=pdf # include symbol table
|
||||
make clean # remove intermediate files like *.log and *.aux
|
||||
|
||||
ebook:
|
||||
latexml --dest=$(DOKUMENT).xml $(DOKUMENT).tex
|
||||
latexmlpost -dest=$(DOKUMENT).html $(DOKUMENT).xml
|
||||
ebook-convert $(DOKUMENT).html $(DOKUMENT).epub --language de --no-default-epub-cover
|
||||
|
||||
all:
|
||||
cd definitions;make
|
||||
sed -i 's/\\newif\\ifAFive\\AFivefalse/\\newif\\ifAFive\\AFivetrue/' GeoTopo.tex
|
||||
make
|
||||
mv GeoTopo.pdf other-formats/GeoTopo-A5.pdf
|
||||
sed -i 's/\\newif\\ifAFive\\AFivetrue/\\newif\\ifAFive\\AFivefalse/' GeoTopo.tex
|
||||
make
|
||||
|
||||
|
||||
clean:
|
||||
rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.thm *.idx *.toc *.ind *.ilg *.glg *.glo *.gls *.ist *.xdy *.fdb_latexmk *.bak *.ilg
|
Loading…
Add table
Add a link
Reference in a new issue