# makefile for newLISP v. 10.x.x on Mac OSX with readline # # needs readline library and headerfiles installed (X tools) # 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 DEFAULT_CFLAGS = -m32 -Wall -O1 -c -DREADLINE -DMAC_OSX $(CFLAGS) CC = cc default: $(OBJS) $(CC) $(LDFLAGS) $(OBJS) -m32 -lm -lreadline -o newlisp .c.o: $(CC) $(CPPFLAGS) $(DEFAULT_CFLAGS) $< $(OBJS): primes.h protos.h makefile_darwin