summary refs log tree commit diff
path: root/www/causal.agency/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'www/causal.agency/Makefile')
-rw-r--r--www/causal.agency/Makefile30
1 files changed, 30 insertions, 0 deletions
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