git-imerge/Makefile
Michael Haggerty 1f023c49cc Add a Makefile.
Type "make html" to convert the reStructuredText files to HTML.
2013-05-11 16:34:55 +02:00

12 lines
103 B
Makefile

RST := \
README.rst \
TODO.rst
all:
html: $(RST:.rst=.html)
%.html: %.rst
rst2html $< >$@