# makefile for newLISP v. 10.x.x on MinGW with UTF-8 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 pcre.o \ nl-utf8.o win-util.o win-path.o CFLAGS = -m32 -Wall -c -O1 -g -DWINDOWS -DSUPPORT_UTF8 CC = gcc STRIP = strip default: $(OBJS) $(CC) -m32 $(OBJS) -lws2_32 -o newlisp.exe $(STRIP) newlisp.exe .c.o: $(CC) $(CFLAGS) $< $(OBJS): primes.h protos.h newlisp.h makefile_mingw_utf8