Merge pull request #14 from aerth/master

now is go gettable and with updated make file and .gitignore to reflect that
This commit is contained in:
Zachary Yedidia 2016-04-18 08:08:41 -04:00
commit 1cb04992ec
19 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
micro
!cmd/micro
binaries/

View file

@ -1,6 +1,6 @@
build: syn-files
go get -d ./src
go build -o micro ./src
go get -d ./cmd/micro
go build -o micro ./cmd/micro
install: syn-files build
mv micro $(GOBIN)
@ -10,8 +10,8 @@ syn-files:
cp -r runtime/* ~/.micro
test:
go get -d ./src
go test ./src
go get -d ./cmd/micro
go test ./cmd/micro
clean:
rm -f micro