diff options
author | Lukaszogg <82384106+Lukaszogg@users.noreply.github.com> | 2021-07-08 20:10:11 +0200 |
---|---|---|
committer | Lukaszogg <82384106+Lukaszogg@users.noreply.github.com> | 2021-07-08 20:10:11 +0200 |
commit | 14033ca595b5c933caea3b214d2246529e6845b8 (patch) | |
tree | 0d6d2b2eb34e5ef5df3c517be5c1c9d803fa066c /buch/Makefile | |
parent | Update teil1.tex (diff) | |
parent | Only include buch.ind if it exists. (diff) | |
download | SeminarMatrizen-14033ca595b5c933caea3b214d2246529e6845b8.tar.gz SeminarMatrizen-14033ca595b5c933caea3b214d2246529e6845b8.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to '')
-rwxr-xr-x | buch/Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/buch/Makefile b/buch/Makefile index 722c177..b83c72a 100755 --- a/buch/Makefile +++ b/buch/Makefile @@ -19,7 +19,6 @@ buch.pdf: buch.tex $(TEXFILES) buch.ind $(BLXFILES) bibtex buch buch.idx: buch.tex $(TEXFILES) images - touch buch.ind pdflatex buch.tex buch.ind: buch.idx @@ -28,8 +27,19 @@ buch.ind: buch.idx separate: buch.aux buch.pdf bash splitpapers -numerik.pdf: - pdfjam --outfile numerik.pdf \ +matrizen.pdf: + pdfjam --outfile matrizen.pdf \ ../cover/front.pdf 1,{} \ buch.pdf 1-504 \ ../cover/back.pdf {},1 + +tests: test1.pdf test2.pdf test3.pdf + +test1.pdf: common/test-common.tex common/test1.tex aufgaben1.tex + pdflatex common/test1.tex + +test2.pdf: common/test-common.tex common/test1.tex aufgaben2.tex + pdflatex common/test2.tex + +test3.pdf: common/test-common.tex common/test1.tex aufgaben3.tex + pdflatex common/test3.tex |