summaryrefslogtreecommitdiff
path: root/Makefile
blob: 34e0df92e6d68d49e935b78959f8220bb7e2bdd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
all: content feed

content:
	rsync -t [^_]*.{html,png,css,map,jpg,txt,webm,ogg} 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