aboutsummaryrefslogtreecommitdiffstats
path: root/annual-meetings/motions/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'annual-meetings/motions/Makefile')
-rw-r--r--annual-meetings/motions/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/annual-meetings/motions/Makefile b/annual-meetings/motions/Makefile
new file mode 100644
index 0000000..cd0204d
--- /dev/null
+++ b/annual-meetings/motions/Makefile
@@ -0,0 +1,10 @@
+TEX = $(addsuffix _.tex, $(basename $(shell ls *.mdwn)))
+ALL = $(TEX)
+
+all: $(ALL)
+
+%_.tex: %.mdwn
+ cat < $< | sed -e 's/SCB/\\scb\\/g' -e 's/^$$/\\mypar\n/' | pandoc -f markdown -t latex > $@
+
+clean:
+ rm -f $(ALL)