mirror of
https://github.com/clockworkpi/WiringPi.git
synced 2025-12-24 13:28:54 +01:00
This patch is autogenerated, with: git-ls-files | grep Makefile | xargs perl -i~ -pe 's/^\t\@/\t\$Q /' Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
23 lines
248 B
Makefile
23 lines
248 B
Makefile
|
|
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 *~
|