From 88c5dba524a3b7f72a99e091a656e6a31a6955b2 Mon Sep 17 00:00:00 2001 From: dllud Date: Tue, 26 Nov 2019 03:13:03 +0000 Subject: First version of the slides. Includes finished slides for title and WebView intro. List of PRISM apps that use WebView is a WIP. Adds the CC BY-SA 4.0 license. --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..753f1de --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +TEXFLAGS ?= -halt-on-error -output-format pdf -output-directory output --shell-escape +TITLE = slides + +.PHONY: all clean + +all: output/$(TITLE).pdf + +output: + mkdir output + +output/$(TITLE).pdf: $(TITLE).tex output + pdflatex $(TEXFLAGS) '\providecommand\locale{en}\input{$(TITLE).tex}' + pdflatex $(TEXFLAGS) '\providecommand\locale{en}\input{$(TITLE).tex}' + +clean: + rm -rf output svg-inkscape -- cgit v1.2.3