mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
22 lines
509 B
Makefile
22 lines
509 B
Makefile
.SILENT:
|
|
|
|
.PHONY: vendor update_vendor \
|
|
remove_vendor/linum+.el update_vendor/linum+.el
|
|
|
|
vendor: vendor/linum+.el
|
|
update_vendor:update_vendor/linum+.el
|
|
|
|
|
|
vendor/linum+.el:
|
|
echo "fetching vendor/linum+.el..." && \
|
|
curl -s -L -o vendor/linum+.el \
|
|
http://www.emacswiki.org/emacs/download/linum%2b.el
|
|
|
|
remove_vendor/linum+.el:
|
|
( \
|
|
test -f "vendor/linum+.el" && rm "vendor/linum+.el" && \
|
|
echo "removed vendor/linum+.el" \
|
|
) || exit 0
|
|
|
|
update_vendor/linum+.el: remove_vendor/linum+.el vendor/linum+.el
|