diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2024-06-02 11:06:00 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2024-06-02 11:06:00 +0200 |
commit | b520bb4d9182b5b25e8b5cb0835c9e563814b87d (patch) | |
tree | 9dbc5177a8a0782fa821fda027d69b0538ed8cc5 /annual/2024/Makefile | |
parent | d1c4545c7ad65f90a6eb75dd466d48585b84f184 (diff) | |
parent | e2f3bf264f73048cdddecd7c839e4abacbaa9ee2 (diff) |
Diffstat (limited to 'annual/2024/Makefile')
-rw-r--r-- | annual/2024/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/annual/2024/Makefile b/annual/2024/Makefile new file mode 100644 index 0000000..1b7680e --- /dev/null +++ b/annual/2024/Makefile @@ -0,0 +1,43 @@ +#!/usr/bin/env make -f +# +# Makefile for Fripost annual meeting + +SLIDES = agenda shortest-procedures +MINUTES = minutes +REPORTS = annual-report operational-plan short-procedures +TRG = 2024-05-19-annual operational-plan-2024 +SUFFIX = + +.PHONY: allall notes + +allall: notes all + +notes: + make -C notes + +ROOT = $(shell git rev-parse --show-toplevel) + +ALL = \ + $(addsuffix .pdf, $(SLIDES)) \ + $(addsuffix .pdf, $(REPORTS)) \ + $(addsuffix .pdf, $(MINUTES)) \ + $(addsuffix .pdf, $(TRG)) + + +include $(ROOT)/lib/Makefile + +# Specific commands for this year 2024 + +2024-05-19-annual.pdf: \ + minutes.pdf \ + annual-report.pdf \ + Balans-och-resultat-2023.pdf \ + revision2023.pdf \ + operational-plan.pdf \ + short-procedures.pdf + pdftk $^ cat output $@ + +operational-plan-2024.pdf: \ + operational-plan.pdf \ + $(ROOT)/by-laws/operational-policy-2023.pdf + pdftk $^ cat output $@ |