You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
248 B
23 lines
248 B
6 years ago
|
|
||
|
SRC = pins.tex
|
||
|
|
||
|
ifneq ($V,1)
|
||
|
Q ?= @
|
||
|
endif
|
||
|
|
||
|
|
||
|
all: ${SRC}
|
||
|
$Q echo Generating DVI
|
||
|
$Q latex pins.tex
|
||
|
|
||
|
pins.dvi: pins.tex
|
||
|
$Q latex pins.tex
|
||
|
|
||
|
pdf: pins.dvi
|
||
|
$Q dvipdf pins.dvi
|
||
|
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
$Q rm -f *.dvi *.aux *.log *.ps *.toc *.bak *~
|