blob: 75849db0299aba1d9be545d0ab3749cdf466917d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
WEBROOT = /var/www/causal.agency
FILES = index.html style.css scheme.css scheme.png
all: ${FILES}
index.html: index.7
mandoc -T html -O style=style.css index.7 > index.html
scheme.css:
scheme -st > scheme.css
scheme.png:
scheme -g > scheme.png
install: ${FILES}
install -C -m 644 ${FILES} ${WEBROOT}
clean:
rm -f index.html scheme.css scheme.png
|