Sergio Durigan Junior
92a88934c1
This modification is intended to support building the package while providing CFLAGS via the environment.
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
# makefile for newLISP v. 10.x.x on Mac OSX with readline support PPC
|
|
#
|
|
# 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
|
|
|
|
DEFAULT_CFLAGS = -Wall -arch ppc -Os -c -g -DREADLINE -DMAC_OSX -DSUPPORT_UTF8 -isysroot $(SDKROOT) $(CFLAGS)
|
|
|
|
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 ppc -g -lm -lreadline -o newlisp
|
|
strip newlisp
|
|
|
|
.c.o:
|
|
$(CC) $(DEFAULT_CFLAGS) $<
|
|
|
|
$(OBJS): primes.h protos.h makefile_darwin_utf8_leopardPPC
|
|
|