File: makefile_darwin_utf8_leopardPPC

package info (click to toggle)
newlisp 10.7.0-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,036 kB
  • ctags: 5,375
  • sloc: ansic: 33,166; lisp: 7,369; java: 7,012; sh: 647; makefile: 273
file content (34 lines) | stat: -rw-r--r-- 1,172 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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) $(LDFLAGS) $(OBJS) -mmacosx-version-min=10.5 -arch ppc -g -lm -lreadline -o newlisp

.c.o:
	$(CC) $(CPPFLAGS) $(DEFAULT_CFLAGS) $<

$(OBJS): primes.h protos.h makefile_darwin_utf8_leopardPPC