mirror of
https://github.com/clockworkpi/WiringPi.git
synced 2025-12-24 21:38:53 +01:00
19 lines
211 B
Makefile
19 lines
211 B
Makefile
|
|
SRC = pins.tex
|
|
|
|
|
|
all: ${SRC}
|
|
@echo Generating DVI
|
|
@latex pins.tex
|
|
|
|
pins.dvi: pins.tex
|
|
@latex pins.tex
|
|
|
|
pdf: pins.dvi
|
|
@dvipdf pins.dvi
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@rm -f *.dvi *.aux *.log *.ps *.toc *.bak *~
|