lobby/Makefile

14 lines
220 B
Makefile

.PHONY: all
all: build
.PHONY: clean
clean:
rm -rf bin
.PHONY: build
build:
mkdir -p ./bin
export CGO_ENABLED=0 && go build -o ./bin/lobbyd daemon/*.go
export CGO_ENABLED=0 && go build -o ./bin/lobbyctl ctl/*.go