From d1a3eb2f1eb59992823d8edb7f0400d67d2818f5 Mon Sep 17 00:00:00 2001 From: 53hornet <53hornet@gmail.com> Date: Tue, 10 Jul 2018 23:06:59 -0400 Subject: Updated pandoc, added TOC, added topnav include, split compiles per site --- makefile | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index fdadaee..b9c25a9 100644 --- a/makefile +++ b/makefile @@ -1,14 +1,36 @@ MD = $(shell find md/ -type f -name '*.md') -INC = $(shell find md/ -type f -name '*.inc') -HTML_PAGE = $(patsubst md/%.md, html/%.html, $(MD)) -HTML_INCL = $(patsubst md/%.inc, html/%.html, $(INC)) +HTML= $(patsubst md/%.md, html/%.html, $(MD)) +CSS = $(shell find md/ -type f -name '*.css') +CSS_HTML = $(patsubst md/%.css, html/%.css, $(CSS)) +53HORNET_HTML = $(patsubst md/53hor.net/%.md, html/53hor.net/%.html, $(MD)) +ATC_HTML = $(patsubst md/atc.53hor.net/%.md, html/atc.53hor.net/%.html, $(MD)) .PHONY: all -all: $(HTML_PAGE) +all: css 53hor.net atc.53hor.net -html/%.html: md/%.md +.PHONY: 53hor.net +53hor.net: $(53HORNET_HTML) + +html/53hor.net/%.html: md/53hor.net/%.md md/53hor.net/include/nav.inc + @echo "53hor.net: $< -> $@" + @mkdir -p "$(@D)" + @pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=2 -B md/53hor.net/include/nav.inc -c /include/styles.css -o "$@" + +.PHONY: atc.53hor.net +atc.53hor.net: $(ATC_HTML) + +html/atc.53hor.net/%.html: md/atc.53hor.net/%.md + @echo "atc.53hor.net: $< -> $@" + @mkdir -p "$(@D)" + @pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=2 -c /include/styles.css -o "$@" + +.PHONY: css +css: $(CSS_HTML) + +html/%.css: md/%.css + @echo "css: $< -> $@" @mkdir -p "$(@D)" - @pandoc "$<" -s -o "$@" + @cp "$<" "$@" clean: @rm -rf html/ -- cgit v1.2.3