From 3323abd21e73eeefc9858d1b615b499c1415d34e Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 12 Jul 2019 21:20:07 -0400 Subject: Add new causal.agency with shotty shots --- www/causal.agency/Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 www/causal.agency/Makefile (limited to 'www/causal.agency/Makefile') diff --git a/www/causal.agency/Makefile b/www/causal.agency/Makefile new file mode 100644 index 00000000..3acf7a39 --- /dev/null +++ b/www/causal.agency/Makefile @@ -0,0 +1,30 @@ +WEBROOT = /usr/local/www/causal.agency + +FILES = index.html scheme.png + +all: $(FILES) + +install: $(FILES) + install -C -m 644 $(FILES) $(WEBROOT) + +INCLUDES = scheme.css torus.html play.html catgirl.html + +index.html: index.html.in index.sed $(INCLUDES) + sed -f index.sed index.html.in > index.html + +.SUFFIXES: .html .pty + +.pty.html: + shotty $< > $@ + +torus.html: torus.pty + shotty -h 25 $< > $@ + +scheme.css: scheme.sed + scheme -s | sed -f scheme.sed > scheme.css + +scheme.png: + scheme -g > scheme.png + +clean: + rm -f *.html scheme.css scheme.png -- cgit 1.4.1