From f39219a71f3ea47950caec7668712d5ac95866ed Mon Sep 17 00:00:00 2001 From: Daniel Farrell Date: Mon, 28 Sep 2020 08:49:36 -0400 Subject: [PATCH] Add build Make target for building both binaries Add a "build" Make target to group building all binaries of this repo under a single well-known command. Signed-off-by: Daniel Farrell --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 69d79c7b0..b2d6e0ab4 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,8 @@ package/.image.lighthouse-agent: bin/lighthouse-agent package/.image.lighthouse-coredns: bin/lighthouse-coredns +build: bin/lighthouse-agent bin/lighthouse-coredns + bin/lighthouse-agent: vendor/modules.txt $(shell find pkg/agent) ${SCRIPTS_DIR}/compile.sh $@ pkg/agent/main.go