28 lines
699 B
Makefile
28 lines
699 B
Makefile
PROJECT_NAME := "alchemyst-go"
|
|
PKG := "lab.zaar.be/thefish/$(PROJECT_NAME)"
|
|
GO=$(shell which go)
|
|
CWD=$(shell pwd)
|
|
GLIDE=$(shell which glide)
|
|
|
|
LDFLAGS="-X \"main.versionInfo=${PKG_VER}-${CI_PIPELINE_ID} built at $(shell date) on $(shell hostname) with $(shell go version)\""
|
|
|
|
.PHONY: all build test get-dep
|
|
|
|
all: build test
|
|
|
|
#build: build.spec build.server
|
|
build: build.server
|
|
|
|
#build.spec:
|
|
# $(CWD)/bin/oapi-codegen --generate types,spec -o $(CWD)/api/inner/inner.gen.go $(CWD)/public/schema/api.yaml
|
|
|
|
build.server:
|
|
$(GO) build -ldflags $(LDFLAGS) -o $(CWD)/bin/game $(CWD)/cmd/game/main.go
|
|
|
|
test:
|
|
$(GO) test -v $(go list ./... | grep -v /vendor/)
|
|
|
|
get-dep:
|
|
GIT_SSL_NO_VERIFY=true go mod vendor
|
|
|