Initial commit of newLISP.
[newlisp.git] / makefile_solarisLP64
blobd8b417c8df043463694dd227488033227fe9a621
1 # makefile for newLISP v. 9.x.x on SOLARIS 64-bit app
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 = -m64 -Wall -pedantic -Wno-uninitialized -Wno-long-long -fno-strict-aliasing -c -O2 -DSOLARIS -DNEWLISP64
10 CC = gcc
12 default: $(OBJS)
13         $(CC) $(OBJS) -m64 -lm -ldl -lrt -lsocket -lnsl -o newlisp
15 .c.o:
16         $(CC) $(CFLAGS) $<
18 $(OBJS): primes.h protos.h makefile_solarisLP64