forked from varia/varia.website
many many many Varia's websites, work in progress: https://many.vvvvvvaria.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
922 B
32 lines
922 B
MAKE = /usr/bin/make
|
|
RST2HTML = ./bootstrap.py
|
|
STYLESHEET =
|
|
RST2HTML_OPTIONS = --strip-comments \
|
|
--report=3 \
|
|
--no-doc-title \
|
|
--traceback \
|
|
--compact-lists \
|
|
--no-toc-backlinks \
|
|
--syntax-highlight=short \
|
|
--template=page.tmpl \
|
|
--cloak-email-addresses \
|
|
--stylesheet=$(STYLESHEET) \
|
|
--link-stylesheet
|
|
|
|
SOURCES = $(wildcard doc/*.rst)
|
|
TMP = $(subst .rst,.html, $(SOURCES))
|
|
OBJECTS = $(subst doc/,, $(TMP))
|
|
|
|
all:$(OBJECTS)
|
|
|
|
%.html: doc/%.rst
|
|
@echo " - $@"
|
|
@$(RST2HTML) $(RST2HTML_OPTIONS) $< $@
|
|
|
|
clean:
|
|
@-rm -f $(OBJECTS)
|
|
|
|
distclean: clean
|
|
@-rm -f `find . -name "*~"`
|
|
|
|
.PHONY: all clean distclean
|
|
|