Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/libgit2/git2go/Makefile')
-rw-r--r--vendor/github.com/libgit2/git2go/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/github.com/libgit2/git2go/Makefile b/vendor/github.com/libgit2/git2go/Makefile
new file mode 100644
index 000000000..cf00ceff1
--- /dev/null
+++ b/vendor/github.com/libgit2/git2go/Makefile
@@ -0,0 +1,18 @@
+default: test
+
+test: build-libgit2
+ go run script/check-MakeGitError-thread-lock.go
+ go test ./...
+
+install: build-libgit2
+ go install ./...
+
+build-libgit2:
+ ./script/build-libgit2-static.sh
+
+install-static: build-libgit2
+ go install --tags "static" ./...
+
+test-static: build-libgit2
+ go run script/check-MakeGitError-thread-lock.go
+ go test --tags "static" ./...