summaryrefslogtreecommitdiff
path: root/Makefile
blob: 512d7ae05116a8947186aa862628611c513131e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
default: build

build: gofmtcheck golint
	go build

install: 
	go install

test: 
	bash travis/run_acceptance_test.sh
vet:
	@echo "go vet ."
	@go vet $$(go list ./... | grep -v vendor/) ; if [ $$? -eq 1 ]; then \
		echo ""; \
		echo "Vet found suspicious constructs. Please check the reported constructs"; \
		echo "and fix them if necessary before submitting the code for review."; \
		exit 1; \
	fi

golint:
	golint ./libvirt
gofmtcheck:
	bash travis/gofmtcheck.sh

.PHONY: build install test vet fmt golint