From 92fa6357aee0c477e7090f6baf6251e969541123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Sat, 27 Aug 2016 21:11:22 +0200 Subject: [PATCH] Bring back the Makefile from 'next' --- Makefile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 9c42283..3040857 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,11 @@ default: test -test: - go run script/check-MakeGitError-thread-lock.go - go test ./... +build-libgit2: + ./script/build-libgit2-static.sh -install: - go install ./... +test: build-libgit2 + go run script/check-MakeGitError-thread-lock.go + ./script/with-static.sh go test ./... + +install: build-libgit2 + ./script/with-static.sh go install ./...