2016-06-11 17:22:37 +00:00
|
|
|
# makefile for newLISP v. 10.x.x on Mac OSX LP64 memory model with readline support, UTF8, FFI
|
|
|
|
#
|
|
|
|
# for OS X 10.6 and later
|
|
|
|
# this is the makefile used to make Mac OS X package for OS X 10.6 Snow Leopard and after
|
|
|
|
#
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2016-06-12 05:14:15 +00:00
|
|
|
DEFAULT_CFLAGS = -m64 -mmacosx-version-min=10.6 -Wall -Oz -c -DREADLINE -DMAC_OSX -DNEWLISP64 -DSUPPORT_UTF8 -DFFI $(CFLAGS)
|
2016-06-11 17:22:37 +00:00
|
|
|
|
|
|
|
CC = cc
|
|
|
|
|
|
|
|
default: $(OBJS)
|
|
|
|
$(CC) $(OBJS) -m64 -mmacosx-version-min=10.6 -lm -lreadline -lffi -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): newlisp.h primes.h protos.h makefile_darwinLP64_utf8_ffi
|
|
|
|
|
|
|
|
|