Initial commit of newLISP.
[newlisp.git] / makefile_solaris_utf8
blob2adbff6624af24cae3458088a7e771960399a10e
1 # makefile for newLISP v. 9.x.x on SOLARIS woth UTF-8 support
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 nl-utf8.o pcre.o
9 # use following for UTF-8 support and add nl-utf8.o to the OBJS line
10 CFLAGS = -Wall -pedantic -Wno-uninitialized -Wno-long-long -c -O2 -DSUPPORT_UTF8 -DSOLARIS 
12 CC = gcc
15 default: $(OBJS)
16         $(CC) $(OBJS) -lm -ldl -lrt -lsocket -lnsl -o newlisp
18 .c.o:
19         $(CC) $(CFLAGS) $<
21 $(OBJS): primes.h protos.h makefile_solaris_utf8