melpa/html/Makefile
Steve Purcell 9c8ba7fbec Add a make target for grabbing json from live server
This allows local testing of the melpa webpage with live data.
2014-06-18 14:14:54 +01:00

15 lines
343 B
Makefile

SHELL := /bin/bash
.PHONY: all clean updates.rss
all: updates.rss
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.milkbox.net/$$f.json > $$f.json; done
clean:
-rm -v updates.rss
.dummy: livejson