Initial commit of newLISP.
[newlisp.git] / makefile_darwin_lib
blob08e033133dbe24e6afb669aa74139d2416245d44
1 # makefile for newLISP v. 9.x.x on Mac OSX as a newlisp.dylib
3 # all versions MacOS X
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 pcre.o unix-lib.o
10 CFLAGS = -Wall -O2 -c -DMAC_OSX -DLIBRARY 
12 CC = cc
14 default: $(OBJS)
15         $(CC) $(OBJS) -g -lm -bundle -o newlisp.dylib
16 #       strip newlisp
18 .c.o:
19         $(CC) $(CFLAGS) $<
21 $(OBJS): primes.h protos.h makefile_darwin_lib