From e70e74bd0f80323d85ae113e45cea2fd6897c6d9 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Mon, 25 Mar 2024 17:18:07 +0000 Subject: [PATCH] Add a porchctl target to the makefile for porch --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 344b1fd8..f5752fc5 100644 --- a/Makefile +++ b/Makefile @@ -173,6 +173,7 @@ ci-unit: configure-git test PORCH = $(BUILDDIR)/porch +PORCHCTL = $(BUILDDIR)/porchctl .PHONY: run-local run-local: porch @@ -195,6 +196,10 @@ run-jaeger: porch: go build -o $(PORCH) ./cmd/porch +.PHONY: porchctl +porchctl: + go build -o $(PORCHCTL) ./cmd/porchctl + .PHONY: fix-headers fix-headers: ../scripts/update-license.sh