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

10 years ago
  1. TEX = $(wildcard *.tex)
  2. SRC = $(filter-out head.tex,${TEX})
  3. PDF = ${SRC:.tex=.pdf}
  4. .SUFFIXES:
  5. .SUFFIXES: .tex .pdf
  6. .tex.pdf:
  7. pdflatex $<
  8. policy.zip: ${PDF}
  9. zip policy.zip ${PDF}
  10. clean:
  11. rm -f *.log *.aux *.pdf *.zip