Django

Code

Ticket #1527: Makefile

File Makefile, 129 bytes (added by Andy Dustman <farcepest@gmail.com>, 3 years ago)

Makefile for docs to convert ReST -> HTML

Line 
1 .SUFFIXES = .txt .html
2
3 %.html : %.txt
4         rst2html.py $< $@
5
6 objects := $(patsubst %.txt,%.html,$(wildcard *.txt))
7 all: $(objects)