newlisp/makefile_darwin_utf8_leopar...

31 lines
936 B
Plaintext

# makefile for newLISP v. 10.x.x on Mac OSX with readline support INTEL and FFI
#
# for OS X 10.5/Leopard on INTEL
#
# developer tools 10.5 or later required
# this does not seem necessary (but if there are problems try uncommenting it)
# export MACOSX_DEPLOYMENT_TARGET=10.4
# to run on 10.4 we must use gcc-4.0
#CC = /usr/bin/gcc-4.0
#SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk
CC = /usr/bin/gcc-4.2
SDKROOT = /Developer/SDKs/MacOSX10.5.sdk
CFLAGS = -Wall -arch i386 -Os -c -g -DREADLINE -DMAC_OSX -DSUPPORT_UTF8 -DFFI -isysroot $(SDKROOT)
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
default: $(OBJS)
$(CC) $(OBJS) -mmacosx-version-min=10.5 -arch i386 -g -lm -lreadline -lffi -o newlisp
strip newlisp
.c.o:
$(CC) $(CFLAGS) $<
$(OBJS): primes.h protos.h makefile_darwin_utf8_leopardIntel_ffi