diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2021-05-25 00:01:11 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2022-05-20 16:45:14 +0200 |
commit | 0c0203c7bf0f001c8d88105f3a8585a4f749c6cd (patch) | |
tree | 80487501368eb6362a65e2323f0c2f7565e85153 /operational-plans/Makefile | |
parent | 2e0a7450a54e088bd159cb663a0ea0364562f390 (diff) |
Annual 2021. Operational plan. Correct Makefile and add wrapper
Diffstat (limited to 'operational-plans/Makefile')
-rw-r--r-- | operational-plans/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/operational-plans/Makefile b/operational-plans/Makefile index c65065c..ea32c49 100644 --- a/operational-plans/Makefile +++ b/operational-plans/Makefile @@ -1,4 +1,5 @@ PDF = \ + operational-plan-2021 \ operational-plan-2020 \ operational-plan-2019 \ operational-plan-2018 \ @@ -10,13 +11,16 @@ TEX = \ operational-policy-2018_ \ operational-policy-2018__ \ -ALL = \ - $(addsuffix .pdf, $(PDF)) \ - $(addsuffix .tex, $(TEX)) \ common-makefile = ../resources/Makefile-common -all: $(ALL) +pdf: $(addsuffix .pdf, $(PDF)) + +tex: $(addsuffix .tex, $(TEX)) + +all: \ + $(addsuffix .pdf, $(PDF)) \ + $(addsuffix .tex, $(TEX)) # General cases @@ -48,7 +52,7 @@ operational-plan-2018.main.tex: operational-policy-2018_.tex sed -e 's/\\\(.*\)section *{/\\subsub\1section\*{/g' < $< > $@ send: - make -f $(common-makefile) send SEND_FILES="$(ALL)" + make -f $(common-makefile) send SEND_FILES="$(PDF)" clean: rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~ |