You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
430 B
Makefile
13 lines
430 B
Makefile
TARGET_ARCH = -mno-cygwin
|
|
CFLAGS = $(WARNINGS) $(DEFINES) $(INCLUDES)
|
|
DEFINES = -DWIN32_LEAN_AND_MEAN
|
|
INCLUDES = -I${LUA}/include
|
|
WARNINGS = -W -Wall -Wno-missing-braces
|
|
#LUA = /home/mark/src/lang/lua/lua-5.1-rc2
|
|
LUA = /home/mark/src/lang/lua/lua51
|
|
LUALIBS = -L$(LUA)/bin/mingw -llua51
|
|
|
|
ex.dll-OBJS = ex.o spawn.o
|
|
ex.dll: $(ex.dll-OBJS)
|
|
$(CC) $(TARGET_ARCH) -shared -o $@ $(ex.dll-OBJS) $(LUALIBS) /c/windows/system32/msvcrt.dll
|