From 527ea14e536b75d2e413d50d72706c220d8db76d Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 20 Apr 2020 14:10:40 -0700 Subject: [PATCH] Further mac fixes --- Lua/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Lua/Makefile b/Lua/Makefile index 7ecc7dc..f9ef682 100644 --- a/Lua/Makefile +++ b/Lua/Makefile @@ -13,8 +13,12 @@ LUA_DIR=/usr/local LUA_INC=$(LUA_DIR)/include LUA_BIN=$(LUA_DIR)/bin LUA= lua -#LUA_SHARED_FLAGS=-bundle -undefined dynamic_lookup -LUA_SHARED_FLAGS=-shared -fPIC +LUA_O_FLAGS=-fPIC +ifeq ($(shell uname -s),Darwin) + LUA_SHARED_FLAGS=-bundle -undefined dynamic_lookup +else + LUA_SHARED_FLAGS=-shared -fPIC +endif all: btui.so @@ -28,6 +32,6 @@ btui.so: lbtui.o ../btui.h $(CC) $(CFLAGS) $(CWARN) $(G) $(O) $(LUA_SHARED_FLAGS) -I$(LUA_INC) -o $@ $< lbtui.o: lbtui.c - $(CC) $(CFLAGS) $(CWARN) $(G) $(O) -fPIC -c -o $@ $< + $(CC) $(CFLAGS) $(CWARN) $(G) $(O) $(LUA_O_FLAGS) -c -o $@ $< .PHONY: all, clean, testlua, test