File: Makefile

package info (click to toggle)
vite 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 15,296 kB
  • ctags: 4,426
  • sloc: cpp: 21,696; ansic: 20,533; sh: 10,218; python: 660; makefile: 439
file content (33 lines) | stat: -rw-r--r-- 518 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
SRC = 	technical_manual.tex \
	convention.tex \
	DataStructure.tex \
	introduction.tex \
	interface.tex \
	render.tex \
	render_svg.tex \
	ParserOTF.tex \
	ParserViTE.tex \
	ParserPaje.tex \
	statistic.tex

DOC =	technical_manual

.PHONY	= clean cleanout cleanall

default	: $(DOC).pdf

$(DOC).pdf :  $(DOC).dvi
	dvipdf $(DOC).dvi

$(DOC).dvi :  $(SRC)
	latex $(DOC).tex
	latex $(DOC).tex
	latex $(DOC).tex

clean :
	rm -f *~ *.aux *.log *.toc *.out

cleanout :
	rm -f $(DOC).dvi $(DOC).pdf

cleanall : clean cleanout