File: Makefile

package info (click to toggle)
blktrace 1.0.1-2.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,824 kB
  • sloc: ansic: 11,801; python: 299; makefile: 247; sh: 143
file content (15 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
DOCTMP	= btt.log btt.aux btt.dvi btt.toc btt.tex.bak

all: btt.pdf

btt.tex: activity.eps qhist.eps dhist.eps seek.eps
	@touch btt.tex

btt.pdf: btt.tex
	@latex btt.tex
	@latex btt.tex
	@dvipdfm -p a4 btt
	@rm -rf $(DOCTMP)

clean:
	-rm -f btt.pdf $(DOCTMP)