~dricottone/resume

resume/Makefile -rw-r--r-- 417 bytes
cac0a3a1Dominic Ricottone Revert to own domain email 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