diff options
author | June McEnroe <june@causal.agency> | 2019-10-30 18:35:52 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-10-30 18:35:52 -0400 |
commit | 218050a0fc03c9c8b77797c457ebc66671a6cc33 (patch) | |
tree | 4582017e319b62658a81143db27032adcdf4160d | |
parent | Add scheme "screenshot" to causal.agency (diff) | |
download | src-218050a0fc03c9c8b77797c457ebc66671a6cc33.tar.gz src-218050a0fc03c9c8b77797c457ebc66671a6cc33.zip |
Use braces in causal.agency Makefile
Diffstat (limited to '')
-rw-r--r-- | www/causal.agency/Makefile | 10 |
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 |