From 4b20ab2e36ed1eedc9c98342a5be3f9725a14d11 Mon Sep 17 00:00:00 2001 From: apio Date: Sun, 6 Nov 2022 12:14:03 +0100 Subject: [PATCH] Create required directories in the install step --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 584c692..f223ce7 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ $(OBJ)/%.o: $(SRC)/%.c install: @echo -- Installing $(LIBNAME).a - @mkdir -p $(DESTDIR) + @mkdir -p $(DESTDIR)/{lib,include} cp $(OUTPUT)/$(LIBNAME).a $(DESTDIR)/lib cp ./minitar.h $(DESTDIR)/include