diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2022-10-27 13:17:23 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2022-10-27 13:17:23 -0400 |
| commit | e258645a523c5fb4407be4a9e90df1314b225191 (patch) | |
| tree | 5b760bec6541cbbafd7afde9a0d29a628134e4cf /Lua/Makefile | |
| parent | 54e87ff91eb4f4f65c3f6a25a7222a442d430927 (diff) | |
Better error handling behavior
Diffstat (limited to 'Lua/Makefile')
| -rw-r--r-- | Lua/Makefile | 4 |
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 |
