summary refs log tree commit diff
path: root/www/causal.agency/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-06-30 19:15:04 -0400
committerJune McEnroe <june@causal.agency>2020-06-30 19:15:04 -0400
commit3f15ec68ca1db7a020ff0ef03c3fe76c5a59e06c (patch)
tree5d376ca84ffe79ac2f743aa355b224f49121948c /www/causal.agency/Makefile
parentAdd Ancillary Justice (diff)
downloadsrc-3f15ec68ca1db7a020ff0ef03c3fe76c5a59e06c.tar.gz
src-3f15ec68ca1db7a020ff0ef03c3fe76c5a59e06c.zip
Tweak causal.agency for mostly no reason
Diffstat (limited to 'www/causal.agency/Makefile')
-rw-r--r--www/causal.agency/Makefile9
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}
>Factor out window management to window.cJune McEnroe 2022-02-19Enable -Wmissing-prototypesJune McEnroe 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe 2022-02-18Implement new line editing "library"June McEnroe 2022-02-18Simplify cursor positioning in inputJune McEnroe 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe