fix build
This commit is contained in:
parent
0d44df85ec
commit
7767fbd677
14
Makefile
14
Makefile
|
|
@ -87,39 +87,39 @@ README.html: md2roff
|
||||||
# Binaries
|
# Binaries
|
||||||
|
|
||||||
build: $(BINARY)
|
build: $(BINARY)
|
||||||
$(BINARY): *.go */*.go
|
$(BINARY): main.go pkg/*/*.go
|
||||||
go build -o $(BINARY) -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
go build -o $(BINARY) -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
||||||
|
|
||||||
linux: $(BINARY).amd64.linux
|
linux: $(BINARY).amd64.linux
|
||||||
$(BINARY).amd64.linux: *.go */*.go
|
$(BINARY).amd64.linux: main.go pkg/*/*.go
|
||||||
# Building linux 64-bit x86 binary.
|
# Building linux 64-bit x86 binary.
|
||||||
GOOS=linux GOARCH=amd64 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
GOOS=linux GOARCH=amd64 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
||||||
|
|
||||||
linux386: $(BINARY).i386.linux
|
linux386: $(BINARY).i386.linux
|
||||||
$(BINARY).i386.linux: *.go */*.go
|
$(BINARY).i386.linux: main.go pkg/*/*.go
|
||||||
# Building linux 32-bit x86 binary.
|
# Building linux 32-bit x86 binary.
|
||||||
GOOS=linux GOARCH=386 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
GOOS=linux GOARCH=386 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
||||||
|
|
||||||
arm: arm64 armhf
|
arm: arm64 armhf
|
||||||
|
|
||||||
arm64: $(BINARY).arm64.linux
|
arm64: $(BINARY).arm64.linux
|
||||||
$(BINARY).arm64.linux: *.go */*.go
|
$(BINARY).arm64.linux: main.go pkg/*/*.go
|
||||||
# Building linux 64-bit ARM binary.
|
# Building linux 64-bit ARM binary.
|
||||||
GOOS=linux GOARCH=arm64 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
GOOS=linux GOARCH=arm64 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
||||||
|
|
||||||
armhf: $(BINARY).armhf.linux
|
armhf: $(BINARY).armhf.linux
|
||||||
$(BINARY).armhf.linux: *.go */*.go
|
$(BINARY).armhf.linux: main.go pkg/*/*.go
|
||||||
# Building linux 32-bit ARM binary.
|
# Building linux 32-bit ARM binary.
|
||||||
GOOS=linux GOARCH=arm GOARM=6 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
GOOS=linux GOARCH=arm GOARM=6 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
||||||
|
|
||||||
macos: $(BINARY).amd64.macos
|
macos: $(BINARY).amd64.macos
|
||||||
$(BINARY).amd64.macos: *.go */*.go
|
$(BINARY).amd64.macos: main.go pkg/*/*.go
|
||||||
# Building darwin 64-bit x86 binary.
|
# Building darwin 64-bit x86 binary.
|
||||||
GOOS=darwin GOARCH=amd64 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
GOOS=darwin GOARCH=amd64 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
||||||
|
|
||||||
exe: $(BINARY).amd64.exe
|
exe: $(BINARY).amd64.exe
|
||||||
windows: $(BINARY).amd64.exe
|
windows: $(BINARY).amd64.exe
|
||||||
$(BINARY).amd64.exe: *.go */*.go
|
$(BINARY).amd64.exe: main.go pkg/*/*.go
|
||||||
# Building windows 64-bit x86 binary.
|
# Building windows 64-bit x86 binary.
|
||||||
GOOS=windows GOARCH=amd64 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
GOOS=windows GOARCH=amd64 go build -o $@ -ldflags "-w -s -X $(VERSION_PATH)=$(VERSION)-$(ITERATION)"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
<img width="320px" src="https://raw.githubusercontent.com/wiki/davidnewhall/unifi-poller/images/unifi-poller-logo.png"> now with <img width="30px" src="https://prometheus.io/assets/prometheus_logo_grey.svg"> Prometheus support!
|
<img width="320px" src="https://raw.githubusercontent.com/wiki/davidnewhall/unifi-poller/images/unifi-poller-logo.png">
|
||||||
|
|
||||||
|
|
||||||
[](https://discord.gg/KnyKYt2)
|
[](https://discord.gg/KnyKYt2)
|
||||||
[](https://twitter.com/TwitchCaptain)
|
[](https://twitter.com/TwitchCaptain)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue