16 lines
398 B
Makefile
16 lines
398 B
Makefile
PARSEFUNC=md4tj-parse
|
|
CC=emacs --no-site-file --batch -l ./md4tj/md4tj_parse.el --eval
|
|
|
|
SITE_ROOT=./site_root
|
|
|
|
all: index about links
|
|
|
|
index: index.md4tj
|
|
$(CC) "($(PARSEFUNC) \"index.md4tj\" \"$(SITE_ROOT)/index.html\")"
|
|
|
|
about: about.md4tj
|
|
$(CC) "($(PARSEFUNC) \"about.md4tj\" \"$(SITE_ROOT)/about.html\")"
|
|
|
|
links: links.md4tj
|
|
$(CC) "($(PARSEFUNC) \"links.md4tj\" \"$(SITE_ROOT)/links.html\")"
|