From c83db7912db0ce4ae866967c2cc3ec0a811c8028 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Wed, 29 May 2024 00:41:32 +0200 Subject: [PATCH] add pdf conversion Here's the printable version for people who are too good for markdown for some reason. --- .gitignore | 3 +++ Makefile | 19 +++++++++++++++++++ README.md | 16 +++++++++++++++- 3 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 Makefile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f975a57 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.tex +*.pdf +rubbish/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..17874fe --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +.PHONY: pdf +pdf: overview.pdf + +rubbish/: + mkdir rubbish + +overview.pdf:| rubbish/overview.pdf + ln rubbish/overview.pdf overview.pdf +rubbish/overview.pdf: overview.tex + +overview.tex: overview.md | rubbish/ + lowdown -stlatex overview.md > overview.tex + +rubbish/overview.pdf: overview.tex + pdflatex -output-directory rubbish/ overview.tex + +.PHONY: clean +clean: + $(RM) -r rubbish overview.tex diff --git a/README.md b/README.md index ef400c8..497f713 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ Let's make a game, and start small. -# Plan +Plan +==== 1. Step 1: Make a 0-player fish-tank, full of goblins. 1. idk, C libraries, probably. @@ -9,3 +10,16 @@ Let's make a game, and start small. Read the overview. +Dependencies +============ + +- `texlive` + * `amsmath` + * `amssymb` + * `graphicx` + * `inputenc` + * `fontend` + * `textcomp` + * `lmodern` + * `hyperref` +- `lowdown`