2015-04-24 22:19:57 +00:00
|
|
|
CRAFTBUKKIT_VERSION := 1.8.3-R0.1-SNAPSHOT-latest
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all: deps
|
|
|
|
|
|
|
|
.PHONY: deps
|
2015-04-24 22:31:27 +00:00
|
|
|
deps: craftbukkit.jar eula.txt
|
2015-04-24 22:19:57 +00:00
|
|
|
|
|
|
|
craftbukkit.jar:
|
|
|
|
curl -SL --progress -o $@ \
|
|
|
|
http://tcpr.ca/download/craftbukkit/craftbukkit-$(CRAFTBUKKIT_VERSION).jar
|
2015-04-24 22:31:27 +00:00
|
|
|
|
|
|
|
eula.txt:
|
|
|
|
echo "eula=true" > $@
|