pg_repack/doc/Makefile

17 lines
305 B
Makefile
Raw Permalink Normal View History

2012-11-19 11:07:00 +00:00
RST2HTML = $(shell which rst2html || which rst2html.py)
RSTOPTS = --stylesheet-path=style.css,html4css1.css --initial-header-level=2
HTML = $(patsubst %.rst,%.html,$(wildcard *.rst))
.PHONY: clean
all : html
html : $(HTML)
%.html: %.rst style.css
2012-11-19 11:07:00 +00:00
$(RST2HTML) $(RSTOPTS) $< $@
clean:
rm -f $(HTML)