2006-03-29 13:05:18 +02:00
|
|
|
# window manager improved 2 user guide
|
2006-04-27 22:11:07 +00:00
|
|
|
|
2006-03-29 12:58:37 +00:00
|
|
|
SRC = guide_en.tex wmii.tex
|
2006-04-27 22:11:07 +00:00
|
|
|
DVI = ${SRC:.tex=.dvi}
|
|
|
|
PDF = ${SRC:.tex=.pdf}
|
|
|
|
HTML = ${SRC:.tex=.html}
|
|
|
|
|
|
|
|
all: ${DVI} ${PDF} #${HTML}
|
|
|
|
|
|
|
|
.SUFFIXES: .tex .dvi .pdf .html
|
2006-03-29 12:58:37 +00:00
|
|
|
|
2006-04-27 22:11:07 +00:00
|
|
|
.tex.dvi:
|
2006-03-29 12:58:37 +00:00
|
|
|
latex -interaction=batchmode $<
|
|
|
|
latex -interaction=batchmode $<
|
2006-04-27 22:11:07 +00:00
|
|
|
|
|
|
|
.tex.pdf:
|
2006-03-29 12:58:37 +00:00
|
|
|
pdflatex $<
|
2006-04-19 20:01:03 +00:00
|
|
|
pdflatex $<
|
2006-04-27 22:11:07 +00:00
|
|
|
|
|
|
|
.tex.html:
|
2006-04-19 20:01:03 +00:00
|
|
|
latex2html $<
|
2006-04-27 22:11:07 +00:00
|
|
|
|
2006-03-29 12:58:37 +00:00
|
|
|
clean:
|
|
|
|
rm -f *.pdf *.dvi *.log *.aux *.out *.toc
|
2006-04-19 20:01:03 +00:00
|
|
|
rm -rf guide_en
|