You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
441 B
Makefile
20 lines
441 B
Makefile
13 years ago
|
all: thesis.pdf
|
||
14 years ago
|
|
||
|
# Vyroba PDF primo z DVI by byla prijemnejsi, ale vetsina verzi dvipdfm nici obrazky
|
||
13 years ago
|
# thesis.pdf: thesis.dvi
|
||
14 years ago
|
# dvipdfm -o $@ -p a4 -r 600 $<
|
||
|
|
||
13 years ago
|
thesis.pdf: thesis.ps
|
||
14 years ago
|
ps2pdf $< $@
|
||
14 years ago
|
|
||
13 years ago
|
thesis.ps: thesis.dvi
|
||
14 years ago
|
dvips -o $@ -D600 -t a4 $<
|
||
|
|
||
14 years ago
|
# LaTeX je potreba spustit dvakrat, aby spravne spocital odkazy
|
||
13 years ago
|
thesis.dvi: thesis.tex $(wildcard *.tex)
|
||
14 years ago
|
cslatex $<
|
||
|
cslatex $<
|
||
14 years ago
|
|
||
|
clean:
|
||
13 years ago
|
rm -f *.{log,dvi,aux,toc,lof,out} thesis.ps thesis.pdf
|