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.
14 lines
334 B
Makefile
14 lines
334 B
Makefile
include ../conf
|
|
|
|
TARGET_ARCH= -mno-cygwin
|
|
CFLAGS= $(WARNINGS) $(DEFINES) $(INCLUDES)
|
|
DEFINES= -DWIN32_LEAN_AND_MEAN -DNOGDI
|
|
INCLUDES= $(LUAINC)
|
|
WARNINGS= -W -Wall -Wno-missing-braces
|
|
|
|
OBJS= ex.o spawn.o pusherror.o dirent.o
|
|
LIBS= $(LUALIB)
|
|
ex.dll: $(OBJS); $(CC) $(TARGET_ARCH) -shared -o $@ $(OBJS) $(LIBS)
|
|
|
|
clean:; rm -f ex.dll *.o
|