1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# makefile for newLISP v. 10.x.x on GNU/kFreeBSD with UTF8 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
DEFAULT_CFLAGS = -Wall -Wno-strict-aliasing -O2 -c -g -DREADLINE -DNEWLISP64 -DSUPPORT_UTF8 -DKFREEBSD $(CFLAGS)
# or without readline lib
#CFLAGS = -Wall -Wno-strict-aliasing -O2 -c -g -DNEWLISP64 -DKFREEBSD
CC = cc
default: $(OBJS)
$(CC) $(LDFLAGS) $(OBJS) -g -lm -ldl -lreadline -lncurses -o newlisp
# or without readline lib
# $(CC) $(LDFLAGS) $(OBJS) -g -lm -o newlisp
.c.o:
$(CC) $(CPPFLAGS) $(DEFAULT_CFLAGS) $<
$(OBJS): primes.h protos.h makefile_bsdLP64_utf8
|