diff options
author | June McEnroe <june@causal.agency> | 2021-01-12 00:34:08 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-12 00:34:08 -0500 |
commit | d7b884d86e85f085d344aa9484276e98b2de1de1 (patch) | |
tree | d05af123b70b11e3cc25346a034b1362e6446996 /www/causal.agency/Makefile | |
parent | Publish "Using vi" (diff) | |
download | src-d7b884d86e85f085d344aa9484276e98b2de1de1.tar.gz src-d7b884d86e85f085d344aa9484276e98b2de1de1.zip |
Replace causal.agency with a simple mdoc page
Diffstat (limited to '')
-rw-r--r-- | www/causal.agency/Makefile | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/www/causal.agency/Makefile b/www/causal.agency/Makefile index fdb1748e..82400b55 100644 --- a/www/causal.agency/Makefile +++ b/www/causal.agency/Makefile @@ -1,25 +1,11 @@ WEBROOT = /usr/local/www/causal.agency -FILES = index.html scheme.png +FILES = index.html style.css scheme.css scheme.png all: ${FILES} -install: ${FILES} - install -C -m 644 ${FILES} ${WEBROOT} - -INCLUDES = scheme.css torus.html play.html catgirl.html scheme.html - -index.html: index.html.in index.sed ${INCLUDES} - sed -f index.sed index.html.in > index.html - -FLAGS.torus.pty = -n -h 25 -FLAGS.scheme.pty = -n -h 10 -FLAGS.play.pty = -h 16 - -.SUFFIXES: .html .pty - -.pty.html: - shotty ${FLAGS.$<} $< > $@ +index.html: index.7 + mandoc -T html -O style=style.css index.7 > index.html scheme.css: scheme -s > scheme.css @@ -27,5 +13,8 @@ scheme.css: scheme.png: scheme -g > scheme.png +install: ${FILES} + install -C -m 644 ${FILES} ${WEBROOT} + clean: - rm -f ${FILES} ${INCLUDES} + rm -f index.html scheme.css scheme.png |