10 lines
188 B
Makefile
10 lines
188 B
Makefile
|
.PHONY: all build deps
|
||
|
|
||
|
all: build
|
||
|
|
||
|
build:
|
||
|
rm -rf build/
|
||
|
mkdir build/
|
||
|
# golint ./...
|
||
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o build/smartswitch-server ./cmd/smartswitch-server
|