aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--annual-meetings/motions/.gitignore1
-rw-r--r--annual-meetings/motions/Makefile10
2 files changed, 11 insertions, 0 deletions
diff --git a/annual-meetings/motions/.gitignore b/annual-meetings/motions/.gitignore
new file mode 100644
index 0000000..5f5cf28
--- /dev/null
+++ b/annual-meetings/motions/.gitignore
@@ -0,0 +1 @@
+*_.* \ No newline at end of file
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)