11 lines
145 B
Makefile
11 lines
145 B
Makefile
|
|
ALL = {{ targets|join:" " }}
|
|
|
|
-include "local.mk"
|
|
|
|
all: ${ALL}
|
|
|
|
{% for s in submissions %}
|
|
{{ s.name }}:
|
|
curl -o $@ -L {{ s.url }}
|
|
{% endfor %} |