1 # makefile for newLISP v. 9.x.x on Mac OSX with UTF-8 and readline support and IPV6
3 # needs readline library and headerfiles installed (X tools)
6 OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
7 nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o
9 CFLAGS = -Wall -O2 -I/usr/include -c -g -DREADLINE -DMAC_OSX -DSUPPORT_UTF8 -DIPV6
14 $(CC) $(OBJS) -g -lm -lreadline -o newlisp
20 $(OBJS): primes.h protos.h makefile_darwin_utf8