1#ident "@(#)power-macintosh-darwin-cc.rul	1.22 21/04/28 "
2###########################################################################
3# Written 1996-2014 by J. Schilling
4###########################################################################
5#
6# Platform dependent MACROS for Darwin-1.2 ff. (Apple MacOS X) PPC (GCC)
7#
8###########################################################################
9# Copyright (c) J. Schilling
10###########################################################################
11# The contents of this file are subject to the terms of the
12# Common Development and Distribution License, Version 1.0 only
13# (the "License").  You may not use this file except in compliance
14# with the License.
15#
16# See the file CDDL.Schily.txt in this distribution for details.
17# A copy of the CDDL is also available via the Internet at
18# http://www.opensource.org/licenses/cddl1.txt
19#
20# When distributing Covered Code, include this CDDL HEADER in each
21# file and include the License file CDDL.Schily.txt from this distribution.
22###########################################################################
23include $(SRCROOT)/$(RULESDIR)/rules.prg
24###########################################################################
25include $(SRCROOT)/$(RULESDIR)/cc-$(C_ARCH:cc%=gcc%).rul
26CC_COM_DEF=	cc
27
28OSDEFS +=
29
30KDEFINES=	-DKERNEL -D_KERNEL
31
32COPTDYN=	-fPIC
33C++OPTDYN=	-fPIC
34
35LIB_PREFIX=	lib
36LIB_SUFFIX=	.a
37SHL_SUFFIX=	.dylib
38
39LIB_SOCKET=
40LIB_MATH=	-lm
41LIB_KVM=
42
43#LDOPTS=		$(LIBS_PATH) $(LDPATH) $(RUNPATH:-R%=-Wl,-R%)
44LDFRAMEWORKS=	-framework IOKit -framework CoreFoundation
45LDOPTS=		$(LIBS_PATH) $(LDPATH) $(LDFRAMEWORKS)
46LDOPTDYN=	-install_name $(INSBASE)/lib/$(TARGET)
47LDLIBDYN=	-lgcc_s.1
48LNDYNLIB=	$(NOECHO)
49
50DYNLD=		$(NOECHO)echo "	==> LINKING dynamic library \"$@\""; libtool -dynamic
51DYNLDC++ =	$(NOECHO)echo "	==> LINKING dynamic library \"$@\""; libtool -dynamic
52RANLIB=		$(NOECHO)echo "	==> RANDOMIZING ARCHIVE \"$@\""; ranlib
53
54#
55# lorder seems not to work on some versions because Apple installed
56# a broken /bin/sh that is not POSIX cimpliant an will not
57# be able to run the /usr/bin/lorder script. The error messages are:
58#	type: not found
59#	type: not found
60#	lorder: nm: not found
61# ... disable it
62#
63LORDER=		echo
64TSORT=		cat
65