-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.europasscv
82 lines (65 loc) · 2.73 KB
/
Makefile.europasscv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
ICONS_SVG=$(wildcard *_europass_icon.svg)
ICONS_PDF=$(ICONS_SVG:.svg=.pdf)
INSTALL = install -m 644
INSTALLDIR = install -d
all: class documentation
pictures: icons europasslogo2013.pdf
europasslogo2013.pdf: europasslogo2013.svg
inkscape $< --export-area-drawing --export-pdf $@
# convert from pdf to ps then back to pdf to avoid the pdftex warning "PDF
# inclusion: multiple pdfs with page group included in a single page"
icons: $(ICONS_SVG) $(ICONS_PDF)
%_europass_icon.pdf.temp : %_europass_icon.svg
inkscape $< --export-area-page --export-pdf $@
%_europass_icon.ps : %_europass_icon.pdf.temp
pdf2ps $< $@
%_europass_icon.pdf : %_europass_icon.ps
ps2pdf $<
documentation: class europasscv.pdf examples
%.pdf: %.tex
latexmk -pdf $<
examples: europasscv_en.pdf europasscv_bib_en.pdf
class: pictures
package: class documentation tds
$(INSTALLDIR) europasscv/example
$(INSTALL) *.svg europasscv
$(INSTALL) *_europass_icon.pdf europasscv
$(INSTALL) europasslogo2013.pdf europasscv
$(INSTALL) europasscv.cls europasscv
$(INSTALL) europasscv-bibliography.sty europasscv
$(INSTALL) europasscv*.def europasscv
$(INSTALL) europasscv.tex europasscv
$(INSTALL) europasscv.pdf europasscv
$(INSTALL) europasscv_*en.tex europasscv/example
$(INSTALL) europasscv_*en.pdf europasscv/example
$(INSTALL) europasscv_example.bib europasscv/example
$(INSTALL) ../README.md europasscv
$(INSTALL) ../CHANGELOG.md europasscv
$(INSTALL) Makefile europasscv/Makefile.europasscv
$(INSTALL) Makefile europasscv/Makefile.europasscv
tar -cvf europasscv.tar --owner=0 --group=0 europasscv europasscv.tds.zip
gzip -f europasscv.tar
rm -fr europasscv
rm -fr europasscv.tds.zip
tds: class documentation
$(INSTALLDIR) tds/tex/latex/europasscv
$(INSTALL) *_europass_icon.pdf tds/tex/latex/europasscv
$(INSTALL) europasslogo2013.pdf tds/tex/latex/europasscv
$(INSTALL) europasscv.cls tds/tex/latex/europasscv
$(INSTALL) europasscv-bibliography.sty tds/tex/latex/europasscv
$(INSTALL) europasscv*.def tds/tex/latex/europasscv
$(INSTALLDIR) tds/doc/latex/europasscv/example
$(INSTALL) europasscv_*en.pdf tds/doc/latex/europasscv/example
$(INSTALL) europasscv_*en.tex tds/doc/latex/europasscv/example
$(INSTALL) europasscv_example.bib tds/doc/latex/europasscv/example
$(INSTALL) ../README.md tds/doc/latex/europasscv
$(INSTALL) ../CHANGELOG.md tds/doc/latex/europasscv
$(INSTALL) europasscv.pdf tds/doc/latex/europasscv
$(INSTALL) europasscv.tex tds/doc/latex/europasscv
cd tds && zip -r europasscv.tds.zip * && mv europasscv.tds.zip ..
rm -fr tds
distclean:
rm -f *~ *.synctex.gz *.aux *.log *.out *.backup *.toc *.temp *.bbl *.bcf *.blg *.fls *.run.xml *.fdb_latexmk
clean: distclean
rm -f *.pdf
.PHONY: all clean distclean tds package class documentation examples pictures