Mercurial > public > resume
diff Makefile @ 1:b294d8923050
Updated resume to my liking. Added a makefile and a Python script to build a HTML fragment, suitable for inclusion in my blog, for example.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 27 Apr 2011 20:41:00 -0500 |
parents | |
children | 2451c4f0822c |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Wed Apr 27 20:41:00 2011 -0500 @@ -0,0 +1,12 @@ +all: resume.html resume-fragment.html +.PHONY: all + +resume.html: resume.rst + rst2html resume.rst > resume.html + +resume-fragment.html: resume.rst + rst2html --initial-header-level=2 --cloak-email-addresses resume.rst > resume-fragment.html + +.PHONY: clean +clean: + rm resume.html resume-fragment.html