mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Deprecate buildall
This commit is contained in:
parent
4d4c71212f
commit
14d085f651
1 changed files with 9 additions and 5 deletions
14
Makefile
14
Makefile
|
@ -80,14 +80,14 @@ setup-git: ##@Development Setup Git hooks (pre-commit and pre-push)
|
||||||
@(cd .git/hooks && ln -sf ../../git/* .)
|
@(cd .git/hooks && ln -sf ../../git/* .)
|
||||||
.PHONY: setup-git
|
.PHONY: setup-git
|
||||||
|
|
||||||
buildall: buildjs build ##@Build Build the project, both frontend and backend
|
build: check_go_env buildjs ##@Build Build the project
|
||||||
.PHONY: buildall
|
|
||||||
|
|
||||||
build: check_go_env buildjs ##@Build Build only backend
|
|
||||||
go build -ldflags="-X github.com/navidrome/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/navidrome/navidrome/consts.gitTag=$(GIT_TAG)-SNAPSHOT" -tags=netgo
|
go build -ldflags="-X github.com/navidrome/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/navidrome/navidrome/consts.gitTag=$(GIT_TAG)-SNAPSHOT" -tags=netgo
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
|
|
||||||
debug-build: check_go_env buildjs ##@Build Build only backend (with remote debug on)
|
buildall: deprecated build
|
||||||
|
.PHONY: buildall
|
||||||
|
|
||||||
|
debug-build: check_go_env buildjs ##@Build Build the project (with remote debug on)
|
||||||
go build -gcflags="all=-N -l" -ldflags="-X github.com/navidrome/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/navidrome/navidrome/consts.gitTag=$(GIT_TAG)-SNAPSHOT" -tags=netgo
|
go build -gcflags="all=-N -l" -ldflags="-X github.com/navidrome/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/navidrome/navidrome/consts.gitTag=$(GIT_TAG)-SNAPSHOT" -tags=netgo
|
||||||
.PHONY: debug-build
|
.PHONY: debug-build
|
||||||
|
|
||||||
|
@ -175,6 +175,10 @@ check_node_env:
|
||||||
pre-push: lintall testall
|
pre-push: lintall testall
|
||||||
.PHONY: pre-push
|
.PHONY: pre-push
|
||||||
|
|
||||||
|
deprecated:
|
||||||
|
@echo "WARNING: This target is deprecated and will be removed in future releases. Use 'make build' instead."
|
||||||
|
.PHONY: deprecated
|
||||||
|
|
||||||
.DEFAULT_GOAL := help
|
.DEFAULT_GOAL := help
|
||||||
|
|
||||||
HELP_FUN = \
|
HELP_FUN = \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue