mirror of
https://github.com/0intro/wmii
synced 2024-11-22 13:52:17 +03:00
15 lines
312 B
Makefile
15 lines
312 B
Makefile
# window manager improved 2 user guide
|
|
SRC = guide_en.tex wmii.tex
|
|
Odvi = ${SRC:.tex=.dvi}
|
|
Opdf = ${SRC:.tex=.pdf}
|
|
|
|
all: ${Odvi} ${Opdf}
|
|
@echo finished doc
|
|
%.dvi: %.tex
|
|
latex -interaction=batchmode $<
|
|
latex -interaction=batchmode $<
|
|
%.pdf: %.tex
|
|
pdflatex $<
|
|
clean:
|
|
rm -f *.pdf *.dvi *.log *.aux *.out *.toc
|