lobby/Makefile

18 lines
268 B
Makefile
Raw Normal View History

.PHONY: all
all: build
.PHONY: clean
clean:
rm -rf bin
2021-09-05 12:36:11 +00:00
.PHONY:test
test:
go test -v server/*.go
.PHONY: build
2021-09-05 12:36:11 +00:00
build: test
mkdir -p ./bin
2021-09-04 23:27:39 +00:00
export CGO_ENABLED=0 && go build -o ./bin/lobbyd daemon/*.go
export CGO_ENABLED=0 && go build -o ./bin/lobbyctl ctl/*.go