# makefile for newLISP v. 10.x.x on Windows with UTF8 FFI 64-bit # 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 pcre.o \ nl-utf8.o win-util.o win-path.o CFLAGS = -m64 -Wall -c -O1 -g -DNEWLISP64 -DWINDOWS -DSUPPORT_UTF8 -DFFI CC = gcc STRIP = strip default: $(OBJS) $(CC) -m64 $(OBJS) -lws2_32 -lffi -o newlisp.exe $(STRIP) newlisp.exe .c.o: $(CC) $(CFLAGS) $< $(OBJS): primes.h protos.h newlisp.h makefile_mingw64_utf8_ffi