summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7d7475c916e649d9d97faf8e7d6305b01a54137b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
default: test

build-libgit2:
	./script/build-libgit2-static.sh

update-libgit2:
	cd vendor/libgit2 && \
	git fetch origin development && \
	git checkout -qf FETCH_HEAD

test: build-libgit2
	./script/with-static.sh go test ./...

install: build-libgit2
	./script/with-static.sh go install ./...