mirror of
https://codeberg.org/1414codeforge/lua-osx.git
synced 2025-02-16 12:10:45 +01:00
10 lines
247 B
Plaintext
10 lines
247 B
Plaintext
# Windows MinGW configuration
|
|
LIB_EXTENSION = dll
|
|
OBJ_EXTENSION = o
|
|
LIBFLAG = -shared
|
|
LUALIB = lua$(shell $(PKGCONFIG) --variable=V $(LUA)).dll.a
|
|
|
|
_src = dir_win32.c
|
|
_cflags = -I$(LUA_INCDIR) -DDF_LUA_OSXLIB
|
|
_ldflags = $(LUA_LIBDIR)/$(LUALIB) -lm
|