From 7f57d2f04b87ccc02af4dcb57f7e9db2eae07d92 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 20 May 2018 21:48:07 +0200 Subject: Refactor operational plan Makefiles The original structure contained "%.main.tex". Turn back to that structure. That means *Makefile* updates and rename 2015 operational plan main file. --- operational-plans/Makefile | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'operational-plans/Makefile') diff --git a/operational-plans/Makefile b/operational-plans/Makefile index dcaaaa0..cf9c982 100644 --- a/operational-plans/Makefile +++ b/operational-plans/Makefile @@ -1,13 +1,13 @@ -# Makefile for minutes with usual treatments, that is noting extra then just compilation. -# -# Gustav Eek 2011 +ALL = \ + operational-plan-2015 \ + operational-plan-2013 \ + operational-plan-2012 \ -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' +common-makefile = ../resources/Makefile-common -all: \ -operational-plan-2013.pdf \ -operational-plan-2012.pdf +all: $(ALL) + +$(ALL): %: %.pdf %.pdf: %.main.tex %.tex ../preamble/preamble.tex latex_count=5 ;\ @@ -20,8 +20,7 @@ operational-plan-2012.pdf mv $$(echo $< | sed 's/.tex/.pdf/') $@ send: - rsync -ruvp --chmod=Dugo+rx,Fugo+r *.pdf fripost@fripost.org:fripost.org/minutes/ - + make -f $(common-makefile) send SEND_FILES="$(ALL)" clean: rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~ -- cgit v1.2.3 From a5a029d7495bdf628d4c2399f94540f8048a1e0e Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 6 May 2018 08:43:46 +0200 Subject: Annual 2018. Initial on operational plan Notes from the activity day added and suggestion for plan. --- operational-plans/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'operational-plans/Makefile') diff --git a/operational-plans/Makefile b/operational-plans/Makefile index cf9c982..529c88e 100644 --- a/operational-plans/Makefile +++ b/operational-plans/Makefile @@ -1,4 +1,5 @@ ALL = \ + operational-plan-2018 \ operational-plan-2015 \ operational-plan-2013 \ operational-plan-2012 \ @@ -9,6 +10,12 @@ all: $(ALL) $(ALL): %: %.pdf +# Special cases + +operational-plan-2018.main.tex: notes-plan-2018.tex + +# General cases + %.pdf: %.main.tex %.tex ../preamble/preamble.tex latex_count=5 ;\ latex_log=$$(echo $< | sed 's/.tex/.log/') ;\ -- cgit v1.2.3 From 9d095b26979be5ee12d016dfab563f8e77b8aef9 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 20 May 2018 15:32:24 +0200 Subject: Annual 2018. Operational plan update, notes discarded, etc. The Plan for operations is updated win latest version. That is also, since the operational policy is in place, that the notes from the activity day, *notes-plan-2018.tex* are removed. Replaced with a link and reference to the wiki. --- operational-plans/Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'operational-plans/Makefile') diff --git a/operational-plans/Makefile b/operational-plans/Makefile index 529c88e..4e008ae 100644 --- a/operational-plans/Makefile +++ b/operational-plans/Makefile @@ -10,10 +10,6 @@ all: $(ALL) $(ALL): %: %.pdf -# Special cases - -operational-plan-2018.main.tex: notes-plan-2018.tex - # General cases %.pdf: %.main.tex %.tex ../preamble/preamble.tex @@ -26,6 +22,14 @@ operational-plan-2018.main.tex: notes-plan-2018.tex done mv $$(echo $< | sed 's/.tex/.pdf/') $@ +# Special cases + +operational-plan-2018.main.tex: operational-policy-2018_.tex + touch $@ +operational-policy-2018_.tex: ../by-laws/operational-policy-2018.tex + sed -e 's/\\\(.*\)section *{/\\sub\1section{/g' < $< > $@ + + send: make -f $(common-makefile) send SEND_FILES="$(ALL)" -- cgit v1.2.3