diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11,10 +11,10 @@ all: css 53hor.net atc.53hor.net .PHONY: 53hor.net 53hor.net: $(53HORNET_HTML) -html/53hor.net/%.html: md/53hor.net/%.md md/53hor.net/include/nav.inc +html/53hor.net/%.html: md/53hor.net/%.md md/53hor.net/nav.html @echo "53hor.net: $< -> $@" @mkdir -p "$(@D)" - @pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=3 -B md/53hor.net/include/nav.inc -c /include/styles.css -o "$@" + @pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=3 -B md/53hor.net/nav.html -c /styles.css -o "$@" .PHONY: atc.53hor.net atc.53hor.net: $(ATC_HTML) @@ -22,7 +22,7 @@ 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 "$@" + @pandoc "$<" -f markdown -t html5 -s --toc --toc-depth=3 -c /styles.css -o "$@" .PHONY: css css: $(CSS_HTML) |