Ticket #1527: Makefile

File Makefile, 129 bytes (added by Andy Dustman <farcepest@…>, 18 years ago)

Makefile for docs to convert ReST -> HTML

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