Initial commit of newLISP.
[newlisp.git] / makefile_darwin_utf8
blob71d4de1fb58aedc11c5394f000f0f3bad21f3632
1 # makefile for newLISP v. 9.x.x on Mac OSX with readline support
3 # needs readline library and headerfiles installed (X tools)
6 OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
7         nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o
9 CFLAGS = -Wall -O2 -I/usr/include -c -g -DREADLINE -DMAC_OSX -DSUPPORT_UTF8
11 CC = cc -L/usr/lib
13 default: $(OBJS)
14         $(CC) $(OBJS) -g -lm -lreadline -o newlisp
15         strip newlisp
17 .c.o:
18         $(CC) $(CFLAGS) $<
20 $(OBJS): primes.h protos.h makefile_darwin_utf8