1.0.39.12: remove darwin-langinfo
[sbcl.git] / src / runtime / Config.ppc-darwin
index a208c5d..92089b5 100644 (file)
@@ -1,17 +1,38 @@
-# -*- makefile -*-
-CFLAGS = -DDARWIN -Dppc -g -Wall -O3 -no-cpp-precomp
-OS_SRC = bsd-os.c os-common.c ppc-darwin-os.c ppc-darwin-dlshim.c
-OS_LIBS = -lSystem -lc -lm
+# -*- makefile -*- for the C-level run-time support for SBCL
 
-# Avoid the dreaded gcc 3.3 prerelease tarpit of death!
-CC = gcc3
+# This software is part of the SBCL system. See the README file for
+# more information.
+#
+# This software is derived from the CMU CL system, which was
+# written at Carnegie Mellon University and released into the
+# public domain. The software is in the public domain and is
+# provided with absolutely no warranty. See the COPYING and CREDITS
+# files for more information.
+
+CFLAGS = -g -Wall -O2 -fdollars-in-identifiers -mmacosx-version-min=10.4
+LINKFLAGS += -mmacosx-version-min=10.4
+
+OS_SRC = bsd-os.c darwin-os.c ppc-darwin-os.c
+ifdef LISP_FEATURE_DLSHIM
+  OS_SRC += darwin-dlshim.c
+endif
+
+OS_LIBS = -lSystem -lc
+
+CC = gcc
 
 ASSEM_SRC = ppc-assem.S ldso-stubs.S
 ARCH_SRC = ppc-arch.c
 
-CPP = cpp -no-cpp-precomp
+CPPFLAGS += -no-cpp-precomp
 
-OS_LINK_FLAGS = -dynamic -L$(HOME)/local/lib -L/sw/lib -L/opt/local/lib -L/usr/local/lib
+ifdef LISP_FEATURE_GENCGC
+  GC_SRC = gencgc.c
+else
+  GC_SRC = cheneygc.c
+endif
 
-GC_SRC= cheneygc.c
+.PHONY: after-grovel-headers
 
+# Nothing to do.
+after-grovel-headers: