diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2019-05-27 17:28:48 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2019-05-27 17:28:48 +0200 |
commit | 2d614978fa7b2e8846291ce61dda56951da15465 (patch) | |
tree | 3ffb8c82eb16dbb026e72e663cb1ffe3d083b791 /agenda/Makefile | |
parent | 1f985d6355dd50cccfae7b8b30d3daab0a6314b3 (diff) | |
parent | 783cb46558a55ec6451ca732b3b6fc14a25bea83 (diff) |
Merge branch 'master' into 2019-01-28-board
Diffstat (limited to 'agenda/Makefile')
-rw-r--r-- | agenda/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/agenda/Makefile b/agenda/Makefile index f84ffb6..3ff045d 100644 --- a/agenda/Makefile +++ b/agenda/Makefile @@ -2,11 +2,13 @@ # # Gustav Eek 2011 +ALL = \ +board-meeting-agenda \ +yearly-meeting-agenda \ + common-makefile = ../resources/Makefile-common -all: \ -board-meeting-agenda.pdf \ -yearly-meeting-agenda.pdf \ +all: $(addsuffix .pdf, $(ALL)) %.pdf: %.tex ../preamble/preamble.tex latex_count=5 ; \ @@ -16,7 +18,7 @@ yearly-meeting-agenda.pdf \ do echo "Rerunning latex...." ; pdflatex $<; latex_count=`expr $$latex_count - 1`; done send: # sends to fripost.org for publication - make -f $(common-makefile) send SEND_FILES="$(all)" + make -f $(common-makefile) send SEND_FILES="$(ALL)" clean: rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~ |