Add FreeBSD build target
This commit is contained in:
parent
6ea4da3bce
commit
c811849771
1 changed files with 6 additions and 2 deletions
8
Makefile
8
Makefile
|
@ -4,7 +4,7 @@ BUILD_DATE=`date +%FT%T%z`
|
||||||
PKG_LIST := $(shell go list ./... | grep -v /vendor/)
|
PKG_LIST := $(shell go list ./... | grep -v /vendor/)
|
||||||
DB_URL := postgres://postgres:postgres@localhost/miniflux_test?sslmode=disable
|
DB_URL := postgres://postgres:postgres@localhost/miniflux_test?sslmode=disable
|
||||||
|
|
||||||
.PHONY: linux linux-arm darwin build run clean test lint integration-test clean-integration-test
|
.PHONY: linux linux-arm darwin freebsd build run clean test lint integration-test clean-integration-test
|
||||||
|
|
||||||
linux:
|
linux:
|
||||||
@ go generate
|
@ go generate
|
||||||
|
@ -21,7 +21,11 @@ darwin:
|
||||||
@ go generate
|
@ go generate
|
||||||
@ GOOS=darwin GOARCH=amd64 go build -ldflags="-X 'github.com/miniflux/miniflux/version.Version=$(VERSION)' -X 'github.com/miniflux/miniflux/version.BuildDate=$(BUILD_DATE)'" -o $(APP)-darwin-amd64 main.go
|
@ GOOS=darwin GOARCH=amd64 go build -ldflags="-X 'github.com/miniflux/miniflux/version.Version=$(VERSION)' -X 'github.com/miniflux/miniflux/version.BuildDate=$(BUILD_DATE)'" -o $(APP)-darwin-amd64 main.go
|
||||||
|
|
||||||
build: linux linux-arm darwin
|
freebsd:
|
||||||
|
@ go generate
|
||||||
|
@ GOOS=freebsd GOARCH=amd64 go build -ldflags="-X 'githug.com/miniflux/miniflux/version.Version=$(VERSION)' -X 'github.com/miniflux/miniflux/version.BuildDate=$(BUILD_DATE)'" -o $(APP)-freebsd-amd64 main.go
|
||||||
|
|
||||||
|
build: linux linux-arm darwin freebsd
|
||||||
|
|
||||||
run:
|
run:
|
||||||
@ go generate
|
@ go generate
|
||||||
|
|
Loading…
Reference in a new issue