Mercurial > public > resume
annotate Makefile @ 6:cf64f4740040
Put into virtualenv. Capture requirements file.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 09 Feb 2014 14:02:51 -0600 |
parents | 2451c4f0822c |
children |
rev | line source |
---|---|
bgneal@3 | 1 all: resume.html resume-fragment.html resume.pdf |
bgneal@1 | 2 .PHONY: all |
bgneal@1 | 3 |
bgneal@1 | 4 resume.html: resume.rst |
bgneal@6 | 5 rst2html.py resume.rst > resume.html |
bgneal@1 | 6 |
bgneal@1 | 7 resume-fragment.html: resume.rst |
bgneal@6 | 8 rst2html.py --initial-header-level=2 --cloak-email-addresses resume.rst > resume-fragment.html |
bgneal@1 | 9 |
bgneal@3 | 10 resume.pdf: resume.rst |
bgneal@3 | 11 rst2pdf resume.rst -o resume.pdf |
bgneal@3 | 12 |
bgneal@1 | 13 .PHONY: clean |
bgneal@1 | 14 clean: |
bgneal@3 | 15 rm resume.html resume-fragment.html resume.pdf |