Initial commit of newLISP.
[newlisp.git] / makefile_bsd_lib
blob5b9ba77eb31a9bc68a161e30ccf677eff83ecf79
1 # makefile for newLISP v. 9.x.x on BSD as a shared library - newlisp.so -
3 OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
4         nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o pcre.o unix-lib.o
6 CFLAGS = -Wall -pedantic -Wno-uninitialized -O2 -c -DLIBRARY -D_BSD
8 CC = gcc
10 default: $(OBJS)
11         $(CC) $(OBJS) -lm -shared -o newlisp.so
12         strip newlisp.so
14 .c.o:
15         $(CC) $(CFLAGS) $<
17 $(OBJS): primes.h protos.h makefile_bsd_lib