This website works better with JavaScript.
Home
Explore
Help
Sign In
jrtechs
/
jrtechs-governance
mirror of
https://github.com/jrtechs/governance.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
3
Wiki
Activity
Browse Source
Makefile.
ct-martin-patch-1
Claire Charron
10 years ago
parent
357feac601
commit
1272c7c916
2 changed files
with
16 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
.gitignore
+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
Write
Preview
Loading…
Cancel
Save