|
Revision 3284, 233 bytes
(checked in by dgollub, 7 months ago)
|
|
There is no dvi2ps on my system - it's called dvips, isn't it?
Don't use pdflatex, otherwise the "draft" module doesn't work.
Introduced make clean and make mrproper for the whitepaper.
TODO: make the whitepaper build env aware of cmake
|
| Line | |
|---|
| 1 | |
|---|
| 2 | default: OpenSync.pdf |
|---|
| 3 | |
|---|
| 4 | %.dvi: %.tex |
|---|
| 5 | pslatex $< |
|---|
| 6 | pslatex $< |
|---|
| 7 | |
|---|
| 8 | %.ps: %.dvi |
|---|
| 9 | dvips $< |
|---|
| 10 | |
|---|
| 11 | %.pdf: %.ps |
|---|
| 12 | ps2pdf $< |
|---|
| 13 | |
|---|
| 14 | #%.pdf: %.tex |
|---|
| 15 | # pdflatex $< |
|---|
| 16 | # pdflatex $< |
|---|
| 17 | |
|---|
| 18 | clean: |
|---|
| 19 | rm -f *.ps *.dvi *.pdf |
|---|
| 20 | |
|---|
| 21 | mrproper: clean |
|---|
| 22 | rm -f *.log *.out *.aux *.toc |
|---|
| 23 | |
|---|