RITlug's open-source governance documents.
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.
|
|
- TEX = $(wildcard policy/*.tex) $(wildcard other/*.tex)
- PDF = ${TEX:.tex=.pdf}
-
- .SUFFIXES:
- .SUFFIXES: .tex .pdf
-
- .tex.pdf:
- cd $(dir $<) && pdflatex $(notdir $<)
-
- governance.zip: ${PDF}
- zip governance.zip ${PDF}
-
- clean:
- rm -f *.log *.aux *.pdf *.zip
|