File: Makefile

package info (click to toggle)
codetools 0.2-20-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 228 kB
  • sloc: makefile: 15
file content (18 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

.SUFFIXES: .nw .tex .pdf .html .bib

.nw.tex:
	noweave -delay -index $< > $@
.tex.pdf:
	pdflatex $<
	pdflatex $<

.nw.html:
	noweave -filter l2h -index -html $< > $@

codetools.R: codetools.nw
	notangle -R$@ $< > $@

clean:
	rm -f codetools.R codetools.pdf codetools.html \
	codetools.aux codetools.log codetools.out codetools.tex