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

TXTS += 001-make.txt
TXTS += 002-writing-mdoc.txt
TXTS += 003-pleasant-c.txt

all: $(TXTS)

.SUFFIXES: .7 .txt

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

feed.atom: $(TXTS)
	./feed.sh > feed.atom

clean:
	rm -f $(TXTS) feed.atom

install: $(TXTS) feed.atom
	install -p -m 644 $(TXTS) feed.atom $(WEBROOT)