|
Revision 79, 0.6 kB
(checked in by d0nut, 5 years ago)
|
|
filestructure
|
| Line | |
|---|
| 1 | TOPACK= doc.tex beamer.tex Makefile |
|---|
| 2 | |
|---|
| 3 | all: doc.pdf |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | export.zip: $(TOPACK) |
|---|
| 7 | -/bin/rm -r export |
|---|
| 8 | mkdir export |
|---|
| 9 | cp $(TOPACK) export |
|---|
| 10 | zip -r export.zip export |
|---|
| 11 | |
|---|
| 12 | doc.pdf: doc.ps |
|---|
| 13 | ps2pdf doc.ps |
|---|
| 14 | |
|---|
| 15 | doc.ps: doc.dvi |
|---|
| 16 | dvips -t a4 doc.dvi |
|---|
| 17 | |
|---|
| 18 | doc.dvi: doc.tex |
|---|
| 19 | latex -interaction=nonstopmode doc.tex |
|---|
| 20 | latex -interaction=nonstopmode doc.tex # beim zweiten Mal ist alles klar |
|---|
| 21 | |
|---|
| 22 | beamer.pdf: beamer.ps |
|---|
| 23 | ps2pdf beamer.ps |
|---|
| 24 | |
|---|
| 25 | beamer.ps: beamer.dvi |
|---|
| 26 | dvips -t a4 beamer.dvi |
|---|
| 27 | |
|---|
| 28 | beamer.dvi: beamer.tex |
|---|
| 29 | latex -interaction=nonstopmode beamer.tex |
|---|
| 30 | latex -interaction=nonstopmode beamer.tex # beim zeiten Mal ist alles klar |
|---|
| 31 | |
|---|
| 32 | clean: |
|---|
| 33 | -/bin/rm *.dvi *.ps *.pdf *.lof *.log *.lot *.aux |
|---|