Files @ de7e9d14eb55
Branch filter:

Location: C3L/Statutes/Makefile

Dennis Fink
Commented out the note for the RCSL
MAINFILE = Satzung.rst
RST2ODT = rst2odt
RST2HTML = rst2html
ODTSTYLESHEET = ./Styles/styles.odt

ODTFIlE = Satzung.odt
HTMLFILE = Satzung.html

help:
	@echo "Please use \'make <target>' where <target> is on of"
	@echo "  html to make a HTML version"
	@echo "  odt  to make a ODT version"

clean:
	-rm -rf Satzung.odt Satzung.html

odt:
	$(RST2ODT) --stylesheet=$(ODTSTYLESHEET) --no-sections --smart-quotes=yes --create-links $(MAINFILE) $(ODTFIlE)
	@echo
	@echo "Build finished. The ODT file is named Satzung.odt"

html:
	$(RST2HTML) --smart-quotes=yes --no-compact-list $(MAINFILE) $(HTMLFILE)
	@echo
	@echo "Build finished. The HTML file is named Satzung.html"