Files
Thun/docs/reference/Makefile
T
Simon Forman 9173e6de44 Make Functor-Reference from individual pages.
This is a little clunky, for example, see "!-" aka "not negative".
2022-03-22 21:47:23 -07:00

10 lines
225 B
Makefile

FUNCDOCS != ls [a-z]*.md
all: Functor-Reference.md
pandoc -s --toc --toc-depth=2 --ascii Functor-Reference.md -o FuncRef.html
Functor-Reference.md: HEADER.md $(FUNCDOCS)
cat HEADER.md $(FUNCDOCS) > Functor-Reference.md