mirror of
https://git.hackfreedom.org/mesh.cat/meshname.git
synced 2026-05-22 06:22:32 +00:00
12 lines
189 B
Makefile
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
|