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
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