Files
@ 8e87b9f4c24c
Branch filter:
Location: C3L/Statutes/Makefile - annotation
8e87b9f4c24c
702 B
text/x-makefile
Added 'mindestens' into VI/2
This clears up, that we can also set the date of the GA earlier and don't need
to exactly set the date on a meeting which is exactly 28 before the GA.
This clears up, that we can also set the date of the GA earlier and don't need
to exactly set the date on a meeting which is exactly 28 before the GA.
7764b5ffa384 7764b5ffa384 7764b5ffa384 7764b5ffa384 7764b5ffa384 6c6f821bb7a2 6c6f821bb7a2 6c6f821bb7a2 7764b5ffa384 7764b5ffa384 7764b5ffa384 7764b5ffa384 7764b5ffa384 7764b5ffa384 7764b5ffa384 7764b5ffa384 7764b5ffa384 85e345282a88 7764b5ffa384 7764b5ffa384 7764b5ffa384 7764b5ffa384 85e345282a88 7764b5ffa384 7764b5ffa384 | 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 --strip-comments --smart-quotes=yes --create-links $(MAINFILE) ./ODT/$(ODTFIlE)
@echo
@echo "Build finished. The ODT file is named Satzung.odt"
html:
$(RST2HTML) --smart-quotes=yes --no-compact-list --date $(MAINFILE) ./HTML/$(HTMLFILE)
@echo
@echo "Build finished. The HTML file is named Satzung.html"
|