dex/Makefile

87 lines
1.8 KiB
Makefile
Raw Normal View History

2016-08-11 11:01:42 +05:30
PROJ=dex
ORG_PATH=github.com/dexidp
2016-08-10 03:08:09 +05:30
REPO_PATH=$(ORG_PATH)/$(PROJ)
2016-08-01 11:56:05 +05:30
export PATH := $(PWD)/bin:$(PATH)
THIS_DIRECTORY:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
2016-07-26 01:30:28 +05:30
VERSION ?= $(shell ./scripts/git-version)
2016-08-10 03:56:32 +05:30
DOCKER_REPO=quay.io/dexidp/dex
2016-08-10 03:56:32 +05:30
DOCKER_IMAGE=$(DOCKER_REPO):$(VERSION)
$( shell mkdir -p bin )
2016-10-06 06:53:15 +05:30
user=$(shell id -u -n)
group=$(shell id -g -n)
2016-07-26 01:30:28 +05:30
export GOBIN=$(PWD)/bin
2016-08-10 03:08:09 +05:30
2016-08-10 03:56:32 +05:30
LD_FLAGS="-w -X $(REPO_PATH)/version.Version=$(VERSION)"
2016-07-26 01:30:28 +05:30
build: bin/dex bin/example-app bin/grpc-client
2016-07-26 01:30:28 +05:30
bin/dex:
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/dex
2016-07-26 01:30:28 +05:30
bin/example-app:
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/example-app
bin/grpc-client:
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/examples/grpc-client
.PHONY: release-binary
release-binary:
@go build -o /go/bin/dex -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/dex
.PHONY: revendor
revendor:
@go mod tidy -v
@go mod vendor -v
@go mod verify
2016-07-26 01:30:28 +05:30
test:
@go test -v ./...
2016-07-26 01:30:28 +05:30
testrace:
@go test -v --race ./...
2016-07-26 01:30:28 +05:30
vet:
@go vet ./...
2016-07-26 01:30:28 +05:30
fmt:
@./scripts/gofmt ./...
2016-07-26 01:30:28 +05:30
lint: bin/golint
@./bin/golint -set_exit_status $(shell go list ./...)
2016-07-26 01:30:28 +05:30
2016-10-06 06:53:15 +05:30
.PHONY: docker-image
docker-image:
@sudo docker build -t $(DOCKER_IMAGE) .
2016-08-10 03:56:32 +05:30
.PHONY: proto
2017-12-01 06:10:42 +05:30
proto: bin/protoc bin/protoc-gen-go
@./bin/protoc --go_out=plugins=grpc:. --plugin=protoc-gen-go=./bin/protoc-gen-go api/*.proto
@./bin/protoc --go_out=. --plugin=protoc-gen-go=./bin/protoc-gen-go server/internal/*.proto
2017-12-01 06:10:42 +05:30
.PHONY: verify-proto
verify-proto: proto
@./scripts/git-diff
bin/protoc: scripts/get-protoc
@./scripts/get-protoc bin/protoc
bin/protoc-gen-go:
@go install -v $(REPO_PATH)/vendor/github.com/golang/protobuf/protoc-gen-go
bin/golint:
@go install -v $(THIS_DIRECTORY)/vendor/golang.org/x/lint/golint
clean:
2016-10-06 06:53:15 +05:30
@rm -rf bin/
2016-07-26 01:30:28 +05:30
testall: testrace vet fmt lint
FORCE:
.PHONY: test testrace vet fmt lint testall