summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2017-01-20 00:46:34 +0000
committerCarlos Martín Nieto <[email protected]>2017-01-20 00:46:34 +0000
commitf0370741989f40b597c99e6093ce7fa0b1983397 (patch)
treef4124f42d79403e0ef20af1080ac3818604ce49c /Makefile
parentb8a9efd21f5ea094976ff2c53c4aec1cf6014876 (diff)
parent5d0a4c752a74258a5f42e40fccd2908ac4e336b8 (diff)
Merge remote-tracking branch 'origin/next'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9c42283..39fc558 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,11 @@
default: test
-test:
+build-libgit2:
+ ./script/build-libgit2-static.sh
+
+test: build-libgit2
go run script/check-MakeGitError-thread-lock.go
go test ./...
-install:
+install: build-libgit2
go install ./...