From 5f0c41d495934c551060b550de035e4671070f15 Mon Sep 17 00:00:00 2001 From: Hugo Musso Gualandi Date: Fri, 9 Aug 2024 20:14:21 -0300 Subject: [PATCH] Actually, we do need -I. Oops! --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3b668c7..2bc4cf3 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ INSTALL_DATA= $(INSTALL) -m 0644 # C compilation flags CFLAGS = -DPT_DEBUG -O2 -std=c99 -pedantic -Wall -Wextra -Wformat-security -CPPFLAGS = -I$(LUA_INCDIR) +CPPFLAGS = -I$(LUA_INCDIR) -I. LIBFLAG = -fPIC -shared # The -Wl,-E tells the linker to not throw away unused Lua API symbols.