# makefile for newLISP v.10.x.x on Cygwin with readline support
#
# Note, that readline support may require different libraries on different OSs
# 
# To install, install the normal Win32 version of newLISP first, 
# then copy the newlisp.exe into $(NEWLISPDIR), which is normally 
# defined as "C:\Program Files\newlisp" after the Win32 install. 

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.o nl-web.o nl-matrix.o nl-debug.o pcre.o

CFLAGS = -m32 -Wall -pedantic -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DCYGWIN

CC = gcc


default: $(OBJS)
	$(CC) $(OBJS) -m32 -g -lm -ldl -lreadline -o newlisp.exe
	strip newlisp.exe

.c.o:
	$(CC) $(CFLAGS) $<

$(OBJS): primes.h protos.h makefile_cygwin

