Browse Source

Makefile.

ct-martin-patch-1
Claire Charron 10 years ago
parent
commit
1272c7c916
2 changed files with 16 additions and 0 deletions
  1. +1
    -0
      .gitignore
  2. +15
    -0
      policy/Makefile

+ 1
- 0
.gitignore View File

@ -1,4 +1,5 @@
*.pdf
*.aux
*.log
*.zip
*~

+ 15
- 0
policy/Makefile View File

@ -0,0 +1,15 @@
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

Loading…
Cancel
Save