# makefile for newLISP v. 10.x.x on Mac OSX with readline support PPC and FFI # # for minimum OS X 10.5/Leopard on PPC # # needs readline library and headerfiles installed (X tools) # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # NOTE: To run this makefile you must be using 10.5 # or later with the 10.4 SDK installed! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # 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 CC = /usr/bin/gcc-4.2 # SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk SDKROOT = /Developer/SDKs/MacOSX10.5.sdk CFLAGS = -m32 -Wall -arch ppc -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) -m32 -mmacosx-version-min=10.5 -arch ppc -g -lm -lreadline -lffi -o newlisp strip newlisp .c.o: $(CC) $(CFLAGS) $< $(OBJS): primes.h protos.h makefile_darwin_utf8_leopardPPC_ffi