From 8b81290ccadbe009f485527d8bdfe0072d31cdcb Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Mon, 18 Aug 2014 22:09:23 +0000 Subject: [PATCH] add a makefile this is technically not necessary at all, but it's a standard in our deploy chain so it makes things a bit more homogenous to use it --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8256e58 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: build + +build: + go build -o ./build/rsload + +test: + go test +