Added basic makefile

This commit is contained in:
euforia 2015-11-17 18:03:23 -08:00
parent 805740069a
commit 94757a209b

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
.clean:
go clean -i -v ./go/weed/
.deps:
go get -d ./go/weed/
.build: .deps
go build -v ./go/weed/
all: .build