From 9e6aa66379236bbf250f9618571d0d8fc1e86766 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Sun, 22 Feb 2026 14:33:47 +1100 Subject: fix(make): Create OUTDIR if not existing --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 640725b..7e8a569 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,9 @@ OUTDIR=dist all: $(LIB) +$(OUTDIR): + mkdir -p $(OUTDIR) + $(LIB): $(OBJ) $(AR) rcs $(OUTDIR)/$(LIB) $(OUTDIR)/$(OBJ) -- cgit v1.2.3