summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2017-01-20 22:55:25 +0000
committerGitHub <[email protected]>2017-01-20 22:55:25 +0000
commit4a14260153072e1e0d8e32d9270b30e3acca7c80 (patch)
tree112c3a1f75c2fcc8d3e88f1d0c6687de179e3ac3 /Makefile
parentb8a9efd21f5ea094976ff2c53c4aec1cf6014876 (diff)
parentb020c1140a2cb8be18141498a6cab5440409dc24 (diff)
Merge pull request #362 from libgit2/cmn/master-tip-static
Update master to latest libgit2 and build statically
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 ./...