2012-07-19 13:37:06 +00:00
|
|
|
SHELL := /bin/bash
|
|
|
|
|
2013-03-19 06:22:48 +00:00
|
|
|
.PHONY: all clean updates.rss index.html
|
2012-07-25 13:46:07 +00:00
|
|
|
all: index.html updates.rss
|
2012-07-19 13:37:06 +00:00
|
|
|
|
2013-03-13 14:50:22 +00:00
|
|
|
index.html: index.html.erb
|
2013-04-17 10:31:09 +00:00
|
|
|
erb index.html.erb > index.html.tmp && mv index.html.tmp index.html
|
2012-07-19 13:37:06 +00:00
|
|
|
|
2012-07-25 13:46:07 +00:00
|
|
|
updates.rss: updates.rss.erb
|
2013-04-17 10:31:09 +00:00
|
|
|
erb updates.rss.erb > updates.rss.tmp && mv updates.rss.tmp updates.rss
|
2012-07-25 13:46:07 +00:00
|
|
|
|
2012-07-19 13:37:06 +00:00
|
|
|
clean:
|
2013-03-13 14:50:22 +00:00
|
|
|
-rm -v index.html updates.rss
|