summary refs log tree commit diff
path: root/Makefile
blob: f5ded14a63f0200b19e8aed5878e0d2fe314b50d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
WEBROOT = /usr/local/www/text.causal.agency

TXTS += 001-make.txt

all: $(TXTS)

.SUFFIXES: .7 .txt

.7.txt:
	mandoc $< | sed $$'s/.\b//g' > $@

clean:
	rm -f $(TXTS)

install: $(TXTS)
	cp $(TXTS) $(WEBROOT)