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_INTRO = index.md OUT_INTRO = $(patsubst %.md,%.html, $(SRC_INTRO)) SRC = $(wildcard ./lab*) SRC += $(SRC_INTRO) SITE_NAME=LinuxLabs default: all all: build build: prerequisites ./build.sh "$(PANDOC)" "$(PD_FLAGS)" "$(PD_FORMAT)" $(SRC) mkdir -pv ./$(SITE_NAME) ./mksite.sh $(SRC) tar -czvf $(SITE_NAME).tar.gz $(SITE_NAME)/ standalone: prerequisites ./build.sh "$(PANDOC)" "$(PD_FLAGS) $(PD_STANDALONE)" "$(PD_FORMAT)" $(SRC) clean: rm -rf easy-pandoc-templates rm -f ./*.html rm -rf $(SITE_NAME) rm -rf $(SITE_NAME).tar.gz clear: rm -f ./*.html rm -rf $(SITE_NAME) rm -rf $(SITE_NAME).tar.gz 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