meshname/Makefile
2020-02-09 04:27:16 -05:00

12 lines
189 B
Makefile

GOARCH := $(GOARCH)
GOOS := $(GOOS)
FLAGS := -ldflags "-s -w"
all:
GOARCH=$$GOARCH GOOS=$$GOOS go build $(FLAGS) ./cmd/meshnamed
clean:
$(RM) meshnamed meshnamed.exe
.PHONY: all clean