From 6d470d6e18130e6c126a59b4548924b336b9d88c Mon Sep 17 00:00:00 2001 From: Levi Gross Date: Tue, 14 Jan 2025 19:10:31 -0500 Subject: [PATCH] Build into the build dir --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3114914..44235dc 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,9 @@ all: $(error Please request a specific thing, there is no default target) .PHONY: build -build: - $(GOCMD) install -v ./cmd/pixiecore +build: update-ipxe + mkdir -p build/ + $(GOCMD) build ./cmd/pixiecore -o build/ .PHONY: test test: