~dricottone/resume

ref: e840222e9bc4a529f8588a6499177401995fe4f6 resume/Makefile -rw-r--r-- 417 bytes
e840222eDominic Ricottone Reorganization 10 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
clean:
	rm -f *.aux *.log *.out *.pax
	rm -f *.bak
	rm -f *.pdf
	rm -f *.png

build: clean document.pdf preview.png

document.pdf: document.tex
	pdflatex document.tex

preview.png: document.pdf
	pdftoppm document.pdf preview -png -singlefile

sync: document.pdf
	rsync --recursive --links --compress --delete document.pdf alarm@arch3.intra.dominic-ricottone.com:/var/deploy/web/development/

.PHONY: clean build sync