]> git.llucax.com Git - personal/resume.git/blob - Build.mak
Remove Spanish version
[personal/resume.git] / Build.mak
1
2 RST2PDF := rst2pdf
3 RST2PDFFLAGS := --compressed --smart-quotes=1
4
5 RST2HTML := rst2html
6 RST2HTMLFLAGS := --section-subtitles
7
8 # Transform reST documents to PDF
9 $(VD)/%.pdf: $T/%.rst $G/rst2pdf-flags
10         $(call exec,$(RST2PDF) $(RST2PDFFLAGS) -o $@ $<)
11
12 # Transform reST documents to HTML
13 $(VD)/%.html: $T/%.rst $G/rst2html-flags
14         $(call exec,$(RST2HTML) $(RST2HTMLFLAGS) $< $@)
15
16 # The real targets
17 $(VD)/resume-en.pdf: RST2PDFFLAGS += -l en_US
18 $(VD)/resume-en.html: RST2HTMLFLAGS += -l en
19
20 .PHONY: en
21 en: $(VD)/resume-en.pdf $(VD)/resume-en.html
22
23 .PHONY: pdf
24 pdf: $(VD)/resume-en.pdf
25
26 .PHONY: html
27 html: $(VD)/resume-en.html
28
29 all += pdf
30
31 # Create files containing the current flags to trigger a rebuild if they change
32 setup_flag_files__ := $(call gen_rebuild_flags,$G/rst2pdf-flags,\
33         $(RST2PDFFLAGS) $(RST2PDF),rst2pdf)
34 setup_flag_files__ := $(setup_flag_files__)$(call gen_rebuild_flags,\
35         $G/rst2html-flags,$(RST2HTMLFLAGS) $(RST2HTML),rst2html)
36 # Print any generated message (if verbose)
37 $(if $V,$(if $(setup_flag_files__), \
38         $(info !! Flags or commands changed:$(setup_flag_files__) re-building \
39                         affected files...)))
40