summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2023-12-27 00:42:28 +0100
committerAki <please@ignore.pl>2023-12-27 00:44:08 +0100
commit995643cae1238ab3d3b21ae36ac666625d741afa (patch)
tree12adb222b1b5f78d1473d5f2ed9120596c0e8423 /Makefile
parent2232602e9f6583722b15389039ca486b0b22c3b9 (diff)
downloadignore.pl-995643cae1238ab3d3b21ae36ac666625d741afa.zip
ignore.pl-995643cae1238ab3d3b21ae36ac666625d741afa.tar.gz
ignore.pl-995643cae1238ab3d3b21ae36ac666625d741afa.tar.bz2
Added atom feed for the content
The entries are not yet ordered, placement in the index is... questionable, and the content of "published-on" and "last-modified-on" is duplicated in the subtitle line.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..61bbbe5
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+all: content feed
+
+content:
+ rsync -t [^_]*.{html,png,css,map,jpg} ignore@ignore.pl:public/ignore.pl/
+
+feed:
+ rm -f atom.xml
+ ./atom.xml.sh >atom.xml
+ rsync -t atom.xml ignore@ignore.pl:public/ignore.pl/
+
+.PHONY: all content feed