summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-09-18 00:14:04 -0400
committerJune McEnroe <june@causal.agency>2018-09-18 00:14:04 -0400
commit0b101f5b9d98f972ab9f72e983534412a53dc102 (patch)
tree3861b906c499572c274c72b2c2b221ed37f650cf /Makefile
parentUse install(1) to install (diff)
downloadsrc-0b101f5b9d98f972ab9f72e983534412a53dc102.tar.gz
src-0b101f5b9d98f972ab9f72e983534412a53dc102.zip
Add atom feed generator
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3b9f83e2..d74df97c 100644
--- a/Makefile
+++ b/Makefile
@@ -9,8 +9,11 @@ all: $(TXTS)
 .7.txt:
 	mandoc $< | sed $$'s/.\b//g' > $@
 
+feed.atom: $(TXTS)
+	./feed.sh > feed.atom
+
 clean:
-	rm -f $(TXTS)
+	rm -f $(TXTS) feed.atom
 
-install: $(TXTS)
-	install -p -m 644 $(TXTS) $(WEBROOT)
+install: $(TXTS) feed.atom
+	install -p -m 644 $(TXTS) feed.atom $(WEBROOT)
ref='/pounce/commit/Makefile?h=1.0p1&id=50fc795e7bf594597a21df40ab8157c5f43c23a5&follow=1'>Add install and uninstall targetsJune McEnroe 2019-10-25Expand documentationJune McEnroe 2019-10-25Add AGPLv3 notice on client registrationJune McEnroe 2019-10-25Rename project pounceJune McEnroe