summary refs log tree commit diff
path: root/www
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-10-30 18:35:52 -0400
committerJune McEnroe <june@causal.agency>2019-10-30 18:35:52 -0400
commit15046c274915b1bb06e3c4d7f4bda5a96c8a3005 (patch)
treed2d6256e636c8364263185bc1bac0354cf2fd7e3 /www
parentAdd scheme "screenshot" to causal.agency (diff)
downloadsrc-15046c274915b1bb06e3c4d7f4bda5a96c8a3005.tar.gz
src-15046c274915b1bb06e3c4d7f4bda5a96c8a3005.zip
Use braces in causal.agency Makefile
Diffstat (limited to 'www')
-rw-r--r--www/causal.agency/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/www/causal.agency/Makefile b/www/causal.agency/Makefile
index 3c07ccc6..d1031b76 100644
--- a/www/causal.agency/Makefile
+++ b/www/causal.agency/Makefile
@@ -2,14 +2,14 @@ WEBROOT = /usr/local/www/causal.agency
 
 FILES = index.html scheme.png
 
-all: $(FILES)
+all: ${FILES}
 
-install: $(FILES)
-	install -C -m 644 $(FILES) $(WEBROOT)
+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)
+index.html: index.html.in index.sed ${INCLUDES}
 	sed -f index.sed index.html.in > index.html
 
 FLAGS_catgirl.pty = -c
@@ -19,7 +19,7 @@ FLAGS_scheme.pty = -h 10
 .SUFFIXES: .html .pty
 
 .pty.html:
-	shotty $(FLAGS_$<) $< > $@
+	shotty ${FLAGS_$<} $< > $@
 
 scheme.css: scheme.sed
 	scheme -s | sed -f scheme.sed > scheme.css