diff options
-rw-r--r-- | annual/2023/Makefile | 17 | ||||
-rwxr-xr-x | annual/2023/sync | 18 |
2 files changed, 35 insertions, 0 deletions
diff --git a/annual/2023/Makefile b/annual/2023/Makefile new file mode 100644 index 0000000..81abadc --- /dev/null +++ b/annual/2023/Makefile @@ -0,0 +1,17 @@ +SLIDES = agenda +PAPERS = annual-report + +all: \ + $(addsuffix .pdf, $(SLIDES)) \ + $(addsuffix .pdf, $(PAPERS)) + +$(addsuffix .pdf, $(SLIDES)): %.pdf: %.md + pandoc -s -f markdown -t beamer -o $@ < $< + +$(addsuffix .pdf, $(PAPERS)): %.pdf: %.md + pandoc -s -f markdown -t latex -o $@ < $< + +$(addsuffix .tex, $(PAPERS)): %.tex: %.md + pandoc -s -f markdown -t latex -o $@ < $< + + diff --git a/annual/2023/sync b/annual/2023/sync new file mode 100755 index 0000000..2efb15e --- /dev/null +++ b/annual/2023/sync @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +# Sync a set of sources with a Git repository target. Set target +# directory where the repository is found. Make sure that all pahts are +# absolute !!! + +mv ${0##*/} ${XDG_RUNTIME_DIR}/ + +TRG="$HOME/git/fripost/meetings/annual/2023" +SRC="$HOME/cloud-fripost/fripost/årsmöte" + +echo ${0##*/}: I: ${SRC} ${TRG} 1>&2 + +rsync -a --delete -P ${SRC}/ ${TRG}/ \ + | grep -iv "^sending" +git -C ${TRG} status --short --branch + +mv ${XDG_RUNTIME_DIR}/${0##*/} . |