meshname/Makefile
2020-09-23 19:03:35 -04:00

15 lines
233 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
test:
go test pkg/meshname/*_test.go
.PHONY: all clean test