From 9b1aa055e0ae1bd02b0fb2d21440c20c463d85f5 Mon Sep 17 00:00:00 2001 From: Wizzard Date: Mon, 26 Feb 2024 01:45:55 -0500 Subject: [PATCH] Have Makefile create bin folder --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 74d206d..c1bcf05 100644 --- a/Makefile +++ b/Makefile @@ -5,5 +5,5 @@ OBJDIR=bin # Use variables for source and object files ip-lookup: $(SRCDIR)/main.c + @mkdir -p $(OBJDIR) $(CC) -o $(OBJDIR)/ip-lookup $(SRCDIR)/main.c $(CFLAGS) -