15 lines
276 B
Makefile
15 lines
276 B
Makefile
CRAFTBUKKIT_VERSION := 1.8.3-R0.1-SNAPSHOT-latest
|
|
|
|
.PHONY: all
|
|
all: deps
|
|
|
|
.PHONY: deps
|
|
deps: craftbukkit.jar eula.txt
|
|
|
|
craftbukkit.jar:
|
|
curl -SL --progress -o $@ \
|
|
http://tcpr.ca/download/craftbukkit/craftbukkit-$(CRAFTBUKKIT_VERSION).jar
|
|
|
|
eula.txt:
|
|
echo "eula=true" > $@
|