Mercurial > public > resume
comparison 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 |
comparison
equal
deleted
inserted
replaced
0:15311d39de92 | 1:b294d8923050 |
---|---|
1 all: resume.html resume-fragment.html | |
2 .PHONY: all | |
3 | |
4 resume.html: resume.rst | |
5 rst2html resume.rst > resume.html | |
6 | |
7 resume-fragment.html: resume.rst | |
8 rst2html --initial-header-level=2 --cloak-email-addresses resume.rst > resume-fragment.html | |
9 | |
10 .PHONY: clean | |
11 clean: | |
12 rm resume.html resume-fragment.html |