2014-06-03 11:35:09 -05:00
|
|
|
default: test
|
|
|
|
|
2016-08-27 14:11:22 -05:00
|
|
|
test: build-libgit2
|
2014-11-18 07:23:22 -06:00
|
|
|
go run script/check-MakeGitError-thread-lock.go
|
2015-12-18 18:30:28 -06:00
|
|
|
go test ./...
|
2014-06-03 11:35:09 -05:00
|
|
|
|
2016-08-27 14:11:22 -05:00
|
|
|
install: build-libgit2
|
2015-12-18 18:30:28 -06:00
|
|
|
go install ./...
|
2016-11-19 08:48:39 -06:00
|
|
|
|
|
|
|
build-libgit2:
|
|
|
|
./script/build-libgit2-static.sh
|
|
|
|
|
|
|
|
install-static: build-libgit2
|
|
|
|
go install --tags "static" ./...
|
|
|
|
|
|
|
|
test-static: build-libgit2
|
2017-07-08 11:24:41 -05:00
|
|
|
go run script/check-MakeGitError-thread-lock.go
|
2016-11-19 08:48:39 -06:00
|
|
|
go test --tags "static" ./...
|