From 393dc1a8a324afac2859da8be82e4cad3489d0a4 Mon Sep 17 00:00:00 2001 From: Liam Waldron Date: Wed, 19 Mar 2025 20:35:01 -0400 Subject: [PATCH] fix issue with Makefile --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7a5624f..fb22d72 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,10 @@ # Makefile # +IDIR = ./include + all: @echo "Run 'make install' to install the library" -install: include/libevconf.h - install include/libevconf.h -t $(PREFIX)/include -m 644 +install: $(IDIR)/libevconf.h + install $(IDIR)/libevconf.h -t $(PREFIX)/include -m 644