pandoc/trypandoc/Makefile
John MacFarlane 5635ef9c57 Replace old trypandoc code with new pandoc-cgi.
This is based on servant. It is less hacky and more extensible.
2022-08-06 14:42:38 -07:00

14 lines
333 B
Makefile

CGIBIN=/home/website/cgi-bin
TRYPANDOC=/home/website/pandoc.org/try/
CGI=${CGIBIN}/trypandoc
BIN=/home/jgm/.cabal/bin/pandoc-cgi
install: ${CGI} ${TRYPANDOC}/index.html
${TRYPANDOC}/%: %
cp $< $@ && chown website:www-data $@ && chmod a+r $@
${CGI}: ${BIN}
cp $< $@ && chown website:www-data $@ && chmod a+rx $@
.PHONY: install