newlisp/makefile_mingwdll_utf8_ffi

25 lines
676 B
Plaintext

# makefile for newLISP DLL v. 10.x.x on MinGW DLL with FFI and UTF8 support
#
OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
nl-sock.o nl-import.o nl-xml-json.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o \
win-util.o win-path.o win-dll.o
CFLAGS = -m32 -Wall -c -O1 -DLIBRARY -DSUPPORT_UTF8 -DFFI -DWINDOWS
CC = gcc
STRIP = strip
WRAP = dllwrap
default: $(OBJS)
# $(CC) -m32 -shared *.o -Wl,--output-def win-dll.def -lffi -lws2_32 -o newlisp.dll
$(CC) -m32 -shared *.o -Wl,--kill-at -lffi -lws2_32 -o newlisp.dll
$(STRIP) newlisp.dll
.c.o:
$(CC) $(CFLAGS) $<
$(OBJS): primes.h protos.h makefile_mingwdll_utf8_ffi