listmonk/Makefile

49 lines
1.3 KiB
Makefile
Raw Normal View History

LAST_COMMIT := $(shell git rev-parse --short HEAD)
LAST_COMMIT_DATE := $(shell git show -s --format=%ci ${LAST_COMMIT})
2019-09-06 10:02:07 +02:00
VERSION := $(shell git describe)
BUILDSTR := ${VERSION} (${LAST_COMMIT} $(shell date -u +"%Y-%m-%dT%H:%M:%S%z"))
2018-10-25 15:51:47 +02:00
BIN := listmonk
STATIC := config.toml.sample schema.sql queries.sql static/public:/public static/email-templates frontend/build:/frontend
2018-10-25 15:51:47 +02:00
2019-06-26 08:29:03 +02:00
# Dependencies.
.PHONY: deps
deps:
go get -u github.com/knadh/stuffbin/...
cd frontend && yarn install
2019-01-09 12:13:13 +01:00
2019-06-26 08:29:03 +02:00
# Build steps.
2019-01-09 12:13:13 +01:00
.PHONY: build
2018-10-25 15:51:47 +02:00
build:
go build -o ${BIN} -ldflags="-s -w -X 'main.buildString=${BUILDSTR}'"
2019-06-26 08:29:03 +02:00
.PHONY: build-frontend
build-frontend:
export REACT_APP_VERSION="${VERSION}" && cd frontend && yarn build
2019-06-26 08:29:03 +02:00
2019-03-27 09:05:51 +01:00
.PHONY: run
run: build
./${BIN}
2019-07-02 09:53:44 +02:00
.PHONY: run-frontend
run-frontend:
export REACT_APP_VERSION="${VERSION}" && cd frontend && yarn start
2019-07-02 09:53:44 +02:00
2019-01-09 12:13:13 +01:00
.PHONY: test
2018-10-25 15:51:47 +02:00
test:
go test ./...
# dist builds the backend, frontend, and uses stuffbin to
# embed all frontend assets into the binary.
.PHONY: dist
dist: build build-frontend
stuffbin -a stuff -in ${BIN} -out ${BIN} ${STATIC}
# pack-releases runns stuffbin packing on a given list of
# binaries. This is used with goreleaser for packing
# release builds for cross-build targets.
.PHONY: pack-releases
pack-releases:
$(foreach var,$(RELEASE_BUILDS),stuffbin -a stuff -in ${var} -out ${var} ${STATIC} $(var);)
2018-10-25 15:51:47 +02:00