Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile - cv - curriculum vitae
git clone git://src.adamsgaard.dk/cv
Log
Files
Refs
LICENSE
---
Makefile (501B)
---
1 .POSIX:
2
3 .SUFFIXES: .tex .pdf
4
5 PDF = \
6 cv.pdf\
7 cv-2page.pdf\
8 publications-5yr.pdf\
9
10 all: ${PDF}
11
12 upload: ${PDF}
13 scp ${PDF} [email protected]:/var/www/domains/adamsgaard.dk/files/
14 scp ${PDF} [email protected]:/var/www/domains/adamsgaard.dk/tmp/
15
16 .tex.pdf:
17 #xelatex $<
18 #xelatex $<
19 lualatex $<
20 lualatex $<
21
22 clean:
23 rm -f ${PDF}
24 rm -f *.log
25 rm -f *.toc
26 rm -f *.out
27 rm -f *.aux
28 rm -f *.bbl
29 rm -f *.blg
30 rm -f *.eps
31 rm -f *.dvi
32 rm -f *.nav
33 rm -f *.snm
34 rm -f *.vrb
35
36 .PHONY: all upload clean
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.