melpa/html/Makefile

16 lines
335 B
Makefile
Raw Permalink Normal View History

2012-07-19 13:37:06 +00:00
SHELL := /bin/bash
2013-08-24 10:06:45 +00:00
.PHONY: all clean updates.rss
all: updates.rss
2012-07-19 13:37:06 +00:00
updates.rss: updates.rss.erb
erb updates.rss.erb > updates.rss.tmp && mv updates.rss.tmp updates.rss
livejson:
for f in recipes archive download_counts build-status; do curl http://melpa.org/$$f.json > $$f.json; done
2012-07-19 13:37:06 +00:00
clean:
2013-08-24 10:06:45 +00:00
-rm -v updates.rss
.dummy: livejson