diff --git a/bukkit/.gitignore b/bukkit/.gitignore new file mode 100644 index 0000000..4a0c0ab --- /dev/null +++ b/bukkit/.gitignore @@ -0,0 +1 @@ +craftbukkit.jar diff --git a/bukkit/Makefile b/bukkit/Makefile new file mode 100644 index 0000000..2b806dd --- /dev/null +++ b/bukkit/Makefile @@ -0,0 +1,12 @@ +CRAFTBUKKIT_VERSION := 1.8.3-R0.1-SNAPSHOT-latest + + +.PHONY: all +all: deps + +.PHONY: deps +deps: craftbukkit.jar + +craftbukkit.jar: + curl -SL --progress -o $@ \ + http://tcpr.ca/download/craftbukkit/craftbukkit-$(CRAFTBUKKIT_VERSION).jar