mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-10 17:13:04 +08:00
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
LAST_COMMIT := $(shell git rev-parse --short HEAD)
|
|
LAST_COMMIT_DATE := $(shell git show -s --format=%ci ${LAST_COMMIT})
|
|
VERSION := $(shell git describe)
|
|
BUILDSTR := ${VERSION} (${LAST_COMMIT} $(shell date -u +"%Y-%m-%dT%H:%M:%S%z"))
|
|
|
|
BIN := listmonk
|
|
STATIC := config.toml.sample schema.sql queries.sql public email-templates frontend/build:/frontend
|
|
|
|
# Dependencies.
|
|
.PHONY: deps
|
|
deps:
|
|
go get -u github.com/knadh/stuffbin/...
|
|
cd frontend && yarn install
|
|
|
|
# Build steps.
|
|
.PHONY: build
|
|
build:
|
|
go build -o ${BIN} -ldflags="-s -w -X 'main.buildString=${BUILDSTR}'"
|
|
|
|
.PHONY: build-frontend
|
|
build-frontend:
|
|
export REACT_APP_VERSION="${VERSION}" && cd frontend && yarn build
|
|
|
|
.PHONY: run
|
|
run: build
|
|
./${BIN}
|
|
|
|
.PHONY: run-frontend
|
|
run-frontend:
|
|
export REACT_APP_VERSION="${VERSION}" && cd frontend && yarn start
|
|
|
|
.PHONY: test
|
|
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);)
|
|
|