From c8118497715a122c7ed120758f54091c0094ce18 Mon Sep 17 00:00:00 2001 From: MoritzFago Date: Mon, 19 Mar 2018 04:44:13 +0100 Subject: Add FreeBSD build target --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 744e092..6253b17 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ BUILD_DATE=`date +%FT%T%z` PKG_LIST := $(shell go list ./... | grep -v /vendor/) 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: @ go generate @@ -21,7 +21,11 @@ darwin: @ 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 -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: @ go generate -- cgit v1.2.3