diff --git a/.gitignore b/.gitignore index 2fafc03..8c09d76 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.swp *.pdf *.aux *.out diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..17b02de --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +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 diff --git a/policy/head.tex b/head.tex similarity index 100% rename from policy/head.tex rename to head.tex diff --git a/other/.gitkeep b/other/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/policy/Makefile b/policy/Makefile deleted file mode 100644 index 9c306fb..0000000 --- a/policy/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -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 diff --git a/policy/constitution.tex b/policy/constitution.tex index 10a5c9d..eab2e9f 100644 --- a/policy/constitution.tex +++ b/policy/constitution.tex @@ -1,4 +1,4 @@ -\input{head.tex} +\input{../head.tex} \begin{document} \pagetitle{RIT Linux Users Group Constitution}{Updated May 06, 2014} diff --git a/policy/server_use_policy.tex b/policy/server_use_policy.tex index b714d72..dcb6ae9 100644 --- a/policy/server_use_policy.tex +++ b/policy/server_use_policy.tex @@ -1,4 +1,4 @@ -\input{head.tex} +\input{../head.tex} \begin{document} \pagetitle{RITlug Server Use Policy}{Updated April 26, 2014}