view 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 source
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