Sergio Durigan Junior
92a88934c1
This modification is intended to support building the package while providing CFLAGS via the environment.
18 lines
561 B
Text
18 lines
561 B
Text
# makefile for newLISP v. 10.x.x on BSD as a shared library - newlisp.so -
|
|
#
|
|
OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
|
|
nl-sock.o nl-import.o nl-xml-json.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o unix-lib.o
|
|
|
|
DEFAULT_CFLAGS = -m32 -Wall -Wno-uninitialized -fno-strict-aliasing -O2 -c -g -D_BSD -DSUPPORT_UTF8 -DLIBRARY $(CFLAGS)
|
|
|
|
CC = cc
|
|
|
|
default: $(OBJS)
|
|
$(CC) $(OBJS) -m32 -lm -shared -o newlisp.so
|
|
strip newlisp.so
|
|
|
|
.c.o:
|
|
$(CC) $(DEFAULT_CFLAGS) $<
|
|
|
|
$(OBJS): primes.h protos.h makefile_bsd_utf8_lib
|
|
|