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

build-libgit2:
	./script/build-libgit2-static.sh
	cat ./vendor/libgit2/libgit2.pc
	cat ./vendor/install/lib/pkgconfig/libgit2.pc

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

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