diff options
author | June McEnroe <june@causal.agency> | 2019-07-12 21:20:07 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-07-12 21:20:07 -0400 |
commit | 3323abd21e73eeefc9858d1b615b499c1415d34e (patch) | |
tree | ab760f8f05c72ec1b6735c35bccf129ad5c1093a /www/causal.agency/Makefile | |
parent | Use -s to infer terminal size (diff) | |
download | src-3323abd21e73eeefc9858d1b615b499c1415d34e.tar.gz src-3323abd21e73eeefc9858d1b615b499c1415d34e.zip |
Add new causal.agency with shotty shots
Diffstat (limited to 'www/causal.agency/Makefile')
-rw-r--r-- | www/causal.agency/Makefile | 30 |
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 |