Initial commit of newLISP.
[newlisp.git] / makefile_darwin
blob81f34304daa02ef806cee69ac0b37b0a659e91fd
1 # makefile for newLISP v. 9.x.x on Mac OSX with readline support
3 # for OS X 10.4/Tiger, Tiger comes standard with libreadline
5 # needs readline library and headerfiles installed (X tools)
8 OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
9         nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o pcre.o
11 #CFLAGS = -Wall -O2 -I/usr/include -c -g -DREADLINE -DMAC_OSX
12 CFLAGS = -Wall -I/usr/include -c -g -DREADLINE -DMAC_OSX
14 CC = cc -L/usr/lib
16 default: $(OBJS)
17         $(CC) $(OBJS) -g -lm -lreadline -o newlisp
18         strip newlisp
20 .c.o:
21         $(CC) $(CFLAGS) $<
23 $(OBJS): primes.h protos.h makefile_darwin