summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMikhail Kobuk <[email protected]>2024-04-13 03:18:44 +0300
committerMikhail Kobuk <[email protected]>2024-04-13 03:18:44 +0300
commit2df40bb5b6e480061ec66e82aeab357ad4498355 (patch)
tree06010599da629ba605d5981d27036439c17cc721 /Makefile
downloadlinux-labs-2df40bb5b6e480061ec66e82aeab357ad4498355.tar.gz
linux-labs-2df40bb5b6e480061ec66e82aeab357ad4498355.zip
Add build system
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..bb3ccd3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,32 @@
+PANDOC ?= pandoc
+PD_FLAGS=--resource-path=$(CURDIR):src --template=uikit.html --toc
+PD_FORMAT=-f markdown -t html
+PD_STANDALONE=--standalone --embed-resources
+
+# SRC = $(wildcard ./lab*/*.md)
+SRC = $(wildcard ./lab*)
+SRC += Linux_labs_0_Introduction.md
+
+default: all
+
+all: build
+
+build: prerequisites
+
+standalone: prerequisites
+ ./build.sh "$(PANDOC)" "$(PD_FLAGS) $(PD_STANDALONE)" "$(PD_FORMAT)" $(SRC)
+
+clean:
+ rm -rf easy-pandoc-templates
+ rm -f ./*.html
+
+prerequisites: easy-pandoc-templates $(SRC)
+
+easy-pandoc-templates:
+ git clone https://github.com/ryangrose/easy-pandoc-templates
+
+sources:
+ @echo $(CURDIR):
+ @echo $(SRC)
+
+.PHONY: build standalone clean