pandoc-pages/scripts/mk/algorithmica.mk

13 lines
355 B
Makefile

TEMPLATE := $(TEMPLATE_DIR)/algorithmica.html
METADATA := $(METADATA) metadata.md
PAGE := $(shell basename $(shell pwd))
all: $(BUILDDIR)/page/$(PAGE)/index.html
$(BUILDDIR)/page/$(PAGE)/index.html: main.md $(TEMPLATE) $(METADATA)
@mkdir -p $(@D)
pandoc $< $(METADATA) --to html --output $@ --standalone --template $(TEMPLATE) --mathjax
.PHONY: all