mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 11:09:31 +00:00
15 lines
335 B
Makefile
15 lines
335 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.org/$$f.json > $$f.json; done
|
|
|
|
clean:
|
|
-rm -v updates.rss
|
|
|
|
.dummy: livejson
|