Initial commit of newLISP.
[newlisp.git] / makefile_darwinLP64
blob0aca1dee1abeca92a258d7fcceb61b989ffbe585
1 # makefile for newLISP v. 9.x.x on Mac OSX LP64 memory model with readline support
3 # for OS X 10.4/Tiger, Tiger comes standard with libreadline
5 # needs a G5 or core 2 duo to run. Passes 'make test' on intel core 2 duo
7 OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
8         nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o pcre.o
10 ;CFLAGS = -m64 -Wall -O2 -I/usr/include -c -g -DREADLINE -DMAC_OSX -DNEWLISP64
11 CFLAGS = -m64 -Wall -O2 -I/usr/include -c -g -DMAC_OSX -DNEWLISP64
12 #CFLAGS = -m64 -Wall -I/usr/include -c -g  -DMAC_OSX -DNEWLISP64
14 CC = cc -L/usr/lib
16 default: $(OBJS)
17         $(CC) $(OBJS) -m64 -g -lm -lreadline -o newlisp
18         strip newlisp
20 .c.o:
21         $(CC) $(CFLAGS) $<
23 $(OBJS): primes.h protos.h makefile_darwinLP64