summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjjsuperpower <jjs29356@gmail.com>2022-06-26 09:40:18 -0500
committerjjsuperpower <jjs29356@gmail.com>2022-06-26 09:40:18 -0500
commit987134966d0c3ab9b1a5775c8f01fa707408780b (patch)
tree47547791b41376ee25fd0968724d2e34a4742f60 /Makefile
parentf4407898d3d74be98cdf1a0308c779cd842364ab (diff)
restructured folder
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 98545df..0000000
--- a/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-BOOK:=manual.pdf
-SOURCES:=src/*.md
-FIGURES:=$(shell find . -name "*.svg")
-PFLAGS:=--table-of-contents \
- --pdf-engine=xelatex \
- --from=markdown \
- --number-sections \
- --indented-code-classes=javascript \
- --highlight-style=monochrome \
- -V mainfont="Apple Garamond" \
- -V monofont="FreeMono" \
- -V documentclass=report \
- -V papersize=letter \
- -V geometry:margin=1in
-
-.PHONY: all clean
-
-all: $(BOOK)
-
-$(BOOK): $(SOURCES) src/title.txt $(FIGURES)
- pandoc $^ -o $@ $(PFLAGS)
-
-clean:
- $(RM) *.pdf