mirror of
https://git.hackfreedom.org/mesh.cat/meshname.git
synced 2026-07-25 15:25:39 +00:00
13 lines
273 B
Makefile
13 lines
273 B
Makefile
GOARCH := $(GOARCH)
|
|
GOOS := $(GOOS)
|
|
FLAGS := -ldflags "-s -w"
|
|
|
|
all:
|
|
GOARCH=$$GOARCH GOOS=$$GOOS go build $(FLAGS) ./cmd/meshnamed
|
|
GOARCH=$$GOARCH GOOS=$$GOOS go build $(FLAGS) ./cmd/meshname
|
|
|
|
clean:
|
|
$(RM) meshnamed meshname meshnamed.exe meshname.exe
|
|
|
|
.PHONY: all clean
|