blob: 0dfed864c5730e851f5e1aa1c370c0f5e08f3a04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
all: content feed
content:
rsync -t [^_]*.{html,png,css,map,jpg,txt} 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
|