8 lines
116 B
Makefile
8 lines
116 B
Makefile
default: build run
|
|
|
|
build:
|
|
@CGO_ENABLED=0 GOOS=linux go build -o build/server main.go
|
|
|
|
run: build
|
|
@./build/server
|