Initial commit of newLISP.
[newlisp.git] / makefile_os2
blob945a37781fc695f10558e57efc6e313febf41e63
1 # makefile for newLISP v. 9.x.x on OS/2 (tested on eComstation)
5 OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
6         nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o pcre.o
8 CFLAGS = -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -s -DOS2
10 CC = gcc
13 default: $(OBJS)
14         $(CC) $(OBJS) -Zomf -Zmt -lm -ldl -o newlisp.exe
17 .c.o:
18         $(CC) $(CFLAGS) $<
20 $(OBJS): primes.h protos.h makefile_os2