# makefile for newLISP v. 8.x.x on OS/2 (WARP v4.0+ ) # 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 = -Wall -pedantic -Wno-uninitialized -O2 -c -s -DOS2 CC = gcc default: $(OBJS) $(CC) $(OBJS) -Zomf -Zmt -lm -o newlisp.exe .c.o: $(CC) $(CFLAGS) $< $(OBJS): primes.h protos.h makefile_os2