mirror of
https://github.com/genxium/DelayNoMore
synced 2024-12-26 19:58:56 +00:00
10 lines
191 B
Makefile
10 lines
191 B
Makefile
PROJECTNAME=tests
|
|
ROOT_DIR=$(shell pwd)
|
|
all: help
|
|
|
|
run-test: build
|
|
GOPATH=$(GOPATH):$(ROOT_DIR)/.. ServerEnv=TEST ./$(PROJECTNAME)
|
|
|
|
build:
|
|
go build -o $(ROOT_DIR)/$(PROJECTNAME) ./tests.go
|