# makefile for newLISP v. 10.x.x on BSDs: FreeBSD, OpenBSD and NetBSD # 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 # the option -fno-strict-aliasing may not be available on some BSD versions CFLAGS = -m32 -Wall -Wno-uninitialized -fno-strict-aliasing -O2 -c -g -DREADLINE -D_BSD # or without readline lib #CFLAGS = -m32 -Wall -Wno-uninitialized -Wno-strict-aliasing -O2 -c -g -D_BSD CC = cc default: $(OBJS) $(CC) $(OBJS) -m32 -g -lm -lreadline -lncurses -o newlisp # or without readline lib # $(CC) $(OBJS) -m32 -g -lm -o newlisp strip newlisp .c.o: $(CC) $(CFLAGS) $< $(OBJS): primes.h protos.h makefile_bsd