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
306 B

  1. TEX = $(wildcard policy/*.tex) $(wildcard other/*.tex)
  2. PDF = ${TEX:.tex=.pdf}
  3. .SUFFIXES:
  4. .SUFFIXES: .tex .pdf
  5. .tex.pdf:
  6. cd $(dir $<) && pdflatex $(notdir $<)
  7. governance.zip: ${PDF}
  8. zip governance.zip ${PDF}
  9. clean:
  10. find . -name "*.log" -o -name "*.aux" -o -name "*.pdf" | xargs rm
  11. rm governance.zip