Makefile: add flamenco-manager-without-webapp target

This builds Flamenco Manager, without rebuilding the webapp, and without
the race condition checker.
This commit is contained in:
Sybren A. Stüvel 2022-07-15 14:07:54 +02:00
parent 809036898b
commit be77403114

View File

@ -39,6 +39,10 @@ flamenco-manager:
$(MAKE) webapp-static $(MAKE) webapp-static
go build -v ${BUILD_FLAGS} ${PKG}/cmd/flamenco-manager go build -v ${BUILD_FLAGS} ${PKG}/cmd/flamenco-manager
.PHONY: flamenco-manager-without-webapp
flamenco-manager-without-webapp:
go build -v ${BUILD_FLAGS} ${PKG}/cmd/flamenco-manager
flamenco-worker: flamenco-worker:
go build -v ${BUILD_FLAGS} ${PKG}/cmd/flamenco-worker go build -v ${BUILD_FLAGS} ${PKG}/cmd/flamenco-worker