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.
 
 

15 lines
222 B

TEX = $(wildcard *.tex)
SRC = $(filter-out head.tex,${TEX})
PDF = ${SRC:.tex=.pdf}
.SUFFIXES:
.SUFFIXES: .tex .pdf
.tex.pdf:
pdflatex $<
policy.zip: ${PDF}
zip policy.zip ${PDF}
clean:
rm -f *.log *.aux *.pdf *.zip