10 lines
105 B
Makefile
10 lines
105 B
Makefile
.PHONY: build test
|
|
|
|
build:
|
|
go build -o build/
|
|
|
|
test:
|
|
go test -v ./...
|
|
|
|
run: build
|
|
./build/boot_server
|