TXT_FILES = nulog2-doc-fr.rst nulog2-doc-en.rst
HTML_FILES = $(TXT_FILES:.rst=.html)

all: $(HTML_FILES)

%.html: %.rst
	rst2html --stylesheet-path nulog-doc.css --link-stylesheet < $< > $@

clean:
	rm -f $(HTML_FILES)

.PHONY: all clean
