lobby/Makefile

14 lines
220 B
Makefile
Raw Normal View History

.PHONY: all
all: build
.PHONY: clean
clean:
rm -rf bin
.PHONY: build
build:
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