diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2011-04-11 15:16:34 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2011-04-11 15:16:34 +0200 |
commit | ce4860294d1657347e8f209199b8e6dbaba79f5c (patch) | |
tree | c9b99ddd2a595bfab379eb78489b66b3b2ae2920 /2010/Makefile |
Initial commit. Minuets since 2010-11-04.
Diffstat (limited to '2010/Makefile')
-rw-r--r-- | 2010/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2010/Makefile b/2010/Makefile new file mode 100644 index 0000000..7331ace --- /dev/null +++ b/2010/Makefile @@ -0,0 +1,21 @@ +# Makefile for Fripost board minutets for meetings 2010 +# +# by Gustav Eek 2011 + +noarg: + echo -e '\nThis script do not run without arguments. Run for example:\n\n make 2011-02-13-board-notes.pdf\n make all\n' + +all: 2010-12-09-board-notes.pdf 2010-11-17-board.pdf 2010-11-17-board-with-app.pdf + +2010-12-09-board-notes.pdf: 2010-12-09-board-notes.tex ../preamble/preamble.tex + pdflatex 2010-12-09-board-notes.tex; pdflatex 2010-12-09-board-notes.tex + +2010-11-17-board.pdf: 2010-11-17-temp.pdf + gs -sOutputFile=2010-11-17-board.pdf -sPAPERSIZE=a4 -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dFirstPage=1 -dLastPage=1 2010-11-17-temp.pdf +2010-11-17-board-with-app.pdf: 2010-11-17-temp.pdf + cp 2010-11-17-temp.pdf 2010-11-17-board-with-app.pdf +2010-11-17-temp.pdf: 2010-11-17-board.tex ../preamble/preamble.tex + pdflatex 2010-11-17-board.tex; pdflatex 2010-11-17-board.tex; mv 2010-11-17-board.pdf 2010-11-17-temp.pdf + +clean: + rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~ *.pdf |