aboutsummaryrefslogtreecommitdiffstats
path: root/2020
diff options
context:
space:
mode:
authorGustav Eek <gustav.eek@fripost.org>2020-03-25 17:19:46 +0100
committerGustav Eek <gustav.eek@fripost.org>2020-03-25 17:20:22 +0100
commit426d2a5745f5a6cfd2f88257af5654dd526c8bd9 (patch)
treefd95da3a6380de345f6f4e517ff717cad0e02592 /2020
parent61aaf3487695ec6bb69bc50e5e74fcf2051a4246 (diff)
Inital on 2020. Makefile created and preamble update
The LaTeX font encoding is updated to *T1* *fontenc* and *lmodern* font (which supports T1). Improvements with T1 compared to the standard OT1 is that glyphs for e.g. Swedish characters are "actual" instead of ASCII ones with accents.
Diffstat (limited to '2020')
-rw-r--r--2020/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/2020/Makefile b/2020/Makefile
new file mode 100644
index 0000000..0c8ebc8
--- /dev/null
+++ b/2020/Makefile
@@ -0,0 +1,18 @@
+# Makefile for minutes
+
+MINUTES := $(basename $(shell ls *.tex 2> /dev/null))
+
+common-makefile = ../resources/Makefile-common
+
+help:
+ @make -s -f $(common-makefile) help SEND_FILES="$(MINUTES)"
+
+all: $(MINUTES)
+
+%:
+ make -f $(common-makefile) compile FILE=$*
+
+send:
+ make -f $(common-makefile) send SEND_FILES="$(MINUTES)"
+clean:
+ make -f $(common-makefile) clean