Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Add missing Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Sep 9, 2013
1 parent 0604c03 commit 240172c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions manuals/en/main/Makefile
@@ -0,0 +1,15 @@
LATEX=latex
DVI2PDF=dvipdf
LATEX2HTML=latex2html

all: main.pdf

main.dvi: *.sty *.tex
$(LATEX) main.tex
$(LATEX) main.tex

main.pdf: main.dvi
$(DVI2PDF) main.dvi main.pdf

clean:
rm -f *.aux *.cdx *.ddx *.dvi *.fdx *.idx *.log *.out *.pdf *.sdx *.toc

0 comments on commit 240172c

Please sign in to comment.