diff options
author | June McEnroe <june@causal.agency> | 2020-06-30 19:15:04 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-06-30 19:15:04 -0400 |
commit | 3f15ec68ca1db7a020ff0ef03c3fe76c5a59e06c (patch) | |
tree | 5d376ca84ffe79ac2f743aa355b224f49121948c /www/causal.agency/Makefile | |
parent | Add Ancillary Justice (diff) | |
download | src-3f15ec68ca1db7a020ff0ef03c3fe76c5a59e06c.tar.gz src-3f15ec68ca1db7a020ff0ef03c3fe76c5a59e06c.zip |
Tweak causal.agency for mostly no reason
Diffstat (limited to '')
-rw-r--r-- | www/causal.agency/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/www/causal.agency/Makefile b/www/causal.agency/Makefile index 407a85d8..0bcea6b5 100644 --- a/www/causal.agency/Makefile +++ b/www/causal.agency/Makefile @@ -12,13 +12,14 @@ 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.torus.pty = -n -h 25 +FLAGS.scheme.pty = -n -h 10 +FLAGS.play.pty = -h 16 .SUFFIXES: .html .pty .pty.html: - shotty ${FLAGS_$<} $< > $@ + shotty ${FLAGS.$<} $< > $@ scheme.css: scheme.sed scheme -s | sed -f scheme.sed > scheme.css @@ -27,4 +28,4 @@ scheme.png: scheme -g > scheme.png clean: - rm -f *.html scheme.css scheme.png + rm -f ${FILES} ${INCLUDES} |