19 lines
216 B
Makefile
19 lines
216 B
Makefile
html: feed.py Makefile
|
|
mkdir html
|
|
cp feed.py Makefile html
|
|
cp *.md html
|
|
|
|
clean-html:
|
|
[[ -d html ]] && rm -r html
|
|
|
|
.PHONY: clean-html
|
|
|
|
feed:
|
|
python feed.py `pwd`
|
|
|
|
rss: feed
|
|
|
|
clean: clean-html
|
|
|
|
.PHONY: feed clean
|