2016-06-11 17:22:37 +00:00
|
|
|
# makefile for newLISP v. 10.x.x on BSDs: FreeBSD, OpenBSD and NetBSD with UTF8 support
|
|
|
|
# and with <libffi support
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
# the option -fno-strict-aliasing may not be available on some BSD versions
|
2016-06-12 05:14:15 +00:00
|
|
|
DEFAULT_CFLAGS = -m64 -Wall -fno-strict-aliasing -O2 -c -g -I/usr/local/include -DREADLINE -DNEWLISP64 -DSUPPORT_UTF8 -D_BSD -DFFI $(CFLAGS)
|
2016-06-11 17:22:37 +00:00
|
|
|
|
|
|
|
# or without readline lib and libffi
|
|
|
|
#CFLAGS = -m64 -Wall -Wno-strict-aliasing -O2 -c -g -DNEWLISP64 -D_BSD
|
|
|
|
|
|
|
|
CC = cc
|
|
|
|
|
|
|
|
default: $(OBJS)
|
|
|
|
$(CC) $(OBJS) -m64 -g -lm -lreadline -lncurses -L/usr/local/lib -lffi -o newlisp
|
|
|
|
# or without readline lib
|
|
|
|
# $(CC) $(OBJS) -m64 -g -lm -o newlisp
|
|
|
|
strip newlisp
|
|
|
|
|
|
|
|
.c.o:
|
2016-06-12 05:14:15 +00:00
|
|
|
$(CC) $(DEFAULT_CFLAGS) $<
|
2016-06-11 17:22:37 +00:00
|
|
|
|
|
|
|
$(OBJS): primes.h protos.h makefile_bsdLP64_utf8_ffi
|
|
|
|
|