aboutsummaryrefslogtreecommitdiff
path: root/source/tools/host/go/cncmaster/Makefile
blob: 7f026da1990c920a185c269b419341e41ae71766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
GOCC ?= go
RM ?= rm
GOPATH := $(shell realpath ./deps)
INSTALL ?= install
DESTDIR ?= .
BIN := cncmaster
ifeq ($(strip $(GOARCH)),)
BIN := $(BIN)-host
else
BIN := $(BIN)-$(GOARCH)$(GOARM)
endif
SRCS := main.go http.go
DEP_MUX := deps/src/github.com/gorilla/mux/mux.go

all: $(BIN)

%.go:

$(DEP_MUX):
	GOPATH=$(GOPATH) $(GOCC) get -v -u github.com/gorilla/mux

$(BIN): $(DEP_MUX) $(SRCS)
ifeq ($(strip $(IS_GCCGO)),)
	GOPATH=$(GOPATH) $(GOCC) build -ldflags="-s -w" -o $(BIN) .
else
	GOPATH=$(GOPATH) $(GOCC) build -gccgoflags="-s -w -pthread" -o $(BIN) .
endif

$(BIN)-install: $(BIN)
	$(INSTALL) -D $(BIN) $(DESTDIR)/$(BIN)

install: $(BIN)-install

clean:
	$(RM) -f $(BIN) $(DESTDIR)/$(BIN)

.PHONY: all