File: makefile

package info (click to toggle)
tth 4.16%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,676 kB
  • sloc: xml: 291; makefile: 173; ansic: 131; sh: 64
file content (29 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (6)
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
LATEX=latex -no-shell-escape -interaction=batchmode
TTH=../tth -a
# If latex is not installed, try the following fall-back:
#LATEX=echo
#TTH=../tth

all : tth_manual.html ttm_manual.html split/index.html

tth_manual.html : tth_manual.tex makefile
	$(LATEX) tth_manual
	$(TTH) tth_manual

ttm_manual.html : ttm_manual.tex
	$(LATEX) ttm_manual
	$(TTH) ttm_manual

ttm_manual.tex : tth_manual.tex
	./tth2ttm

split/index.html : tth_manual.tex
	make -C split

tidy :
	make -C split tidy
	rm -f *.log *.tlg *.idx *.ilg *.toc *.out *.dvi *.lyx *.tms *.tid *.tin *.ind

clean :
	make -C split clean
	rm -f *.log *.tlg *.idx *.ilg *.html *.toc *.out *.dvi *.lyx *.tms *.tid *.tin *.ind *.aux