mirror of
https://github.com/correl/melpa.git
synced 2024-11-15 03:00:14 +00:00
10 lines
199 B
Makefile
10 lines
199 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
|
|
|
|
clean:
|
|
-rm -v updates.rss
|