]> git.llucax.com Git - personal/resume.git/blob - Build.mak
Fix mecon link
[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.pdf: RST2PDFFLAGS += -l en_US
18 $(VD)/resume.html: RST2HTMLFLAGS += -l en
19
20 .PHONY: pdf
21 pdf: $(VD)/resume.pdf
22
23 .PHONY: html
24 html: $(VD)/resume.html
25
26 all += pdf
27
28 # Create files containing the current flags to trigger a rebuild if they change
29 setup_flag_files__ := $(call gen_rebuild_flags,$G/rst2pdf-flags,\
30         $(RST2PDFFLAGS) $(RST2PDF),rst2pdf)
31 setup_flag_files__ := $(setup_flag_files__)$(call gen_rebuild_flags,\
32         $G/rst2html-flags,$(RST2HTMLFLAGS) $(RST2HTML),rst2html)
33 # Print any generated message (if verbose)
34 $(if $V,$(if $(setup_flag_files__), \
35         $(info !! Flags or commands changed:$(setup_flag_files__) re-building \
36                         affected files...)))
37