From be77403114c2492a04f59f5c051467eb49705a57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 15 Jul 2022 14:07:54 +0200 Subject: [PATCH] Makefile: add `flamenco-manager-without-webapp` target This builds Flamenco Manager, without rebuilding the webapp, and without the race condition checker. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 180a67e2..94e6a10e 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,10 @@ flamenco-manager: $(MAKE) webapp-static 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: go build -v ${BUILD_FLAGS} ${PKG}/cmd/flamenco-worker