pandoc-pages/scripts/mk/algorithmica.mk

13 lines
355 B
Makefile
Raw Normal View History

2023-05-20 17:38:37 +03:00
TEMPLATE := $(TEMPLATE_DIR)/algorithmica.html
METADATA := $(METADATA) metadata.md
PAGE := $(shell basename $(shell pwd))
2023-06-04 18:24:07 +03:00
all: $(BUILDDIR)/page/$(PAGE)/index.html
2023-05-20 17:38:37 +03:00
2023-06-04 18:24:07 +03:00
$(BUILDDIR)/page/$(PAGE)/index.html: main.md $(TEMPLATE) $(METADATA)
2023-05-20 17:38:37 +03:00
@mkdir -p $(@D)
pandoc $< $(METADATA) --to html --output $@ --standalone --template $(TEMPLATE) --mathjax
.PHONY: all