aboutsummaryrefslogtreecommitdiff
path: root/Lua/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2022-10-27 13:17:23 -0400
committerBruce Hill <bruce@bruce-hill.com>2022-10-27 13:17:23 -0400
commite258645a523c5fb4407be4a9e90df1314b225191 (patch)
tree5b760bec6541cbbafd7afde9a0d29a628134e4cf /Lua/Makefile
parent54e87ff91eb4f4f65c3f6a25a7222a442d430927 (diff)
Better error handling behavior
Diffstat (limited to 'Lua/Makefile')
-rw-r--r--Lua/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lua/Makefile b/Lua/Makefile
index fc1ba14..3c9a745 100644
--- a/Lua/Makefile
+++ b/Lua/Makefile
@@ -26,9 +26,9 @@ O=-O3
ALL_FLAGS=$(CFLAGS) $(OSFLAGS) $(INCS) $(EXTRA) $(CWARN) $(G) $(O)
ifeq ($(shell uname -s),Darwin)
- MAKESO= $(CC) -bundle -undefined dynamic_lookup
+ MAKESO= $(CC) -bundle -undefined dynamic_lookup $(CFLAGS) $(OSFLAGS) $(EXTRA) $(CWARN) $(G) $(O)
else
- MAKESO= $(CC) -shared
+ MAKESO= $(CC) -shared $(CFLAGS) $(OSFLAGS) $(EXTRA) $(CWARN) $(G) $(O)
endif
all: bp.so