mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 22:25:53 +00:00
15 lines
334 B
Makefile
15 lines
334 B
Makefile
CGIBIN=/home/website/cgi-bin
|
|
TRYPANDOC=/home/website/html/pandoc/try/
|
|
CGI=${CGIBIN}/trypandoc
|
|
BIN=../.cabal-sandbox/bin/trypandoc
|
|
|
|
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
|