~ chicken-core (chicken-5) /Makefile.macosx
Trap1# Makefile.macosx - configuration for Apple Macintosh OS X -*- Makefile -*-2#3# Copyright (c) 2008-2022, The CHICKEN Team4# Copyright (c) 2007, Felix L. Winkelmann5# All rights reserved.6#7# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following8# conditions are met:9#10# Redistributions of source code must retain the above copyright notice, this list of conditions and the following11# disclaimer.12# Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following13# disclaimer in the documentation and/or other materials provided with the distribution.14# Neither the name of the author nor the names of its contributors may be used to endorse or promote15# products derived from this software without specific prior written permission.16#17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS18# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY19# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR20# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR21# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR22# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR24# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE25# POSSIBILITY OF SUCH DAMAGE.2627SRCDIR ?= ./2829# platform configuration3031C_COMPILER ?= gcc32ARCH ?= $(shell sh $(SRCDIR)/config-arch.sh)3334# commands3536POSTINSTALL_PROGRAM = install_name_tool3738# options3940C_COMPILER_OPTIONS ?= -fno-strict-aliasing -fwrapv -fno-common -DHAVE_CHICKEN_CONFIG_H41ifdef DEBUGBUILD42C_COMPILER_OPTIMIZATION_OPTIONS ?= -g -Wall -Wno-unused43else44ifdef OPTIMIZE_FOR_SPEED45C_COMPILER_OPTIMIZATION_OPTIONS ?= -O3 -fomit-frame-pointer46else47C_COMPILER_OPTIMIZATION_OPTIONS ?= -Os -fomit-frame-pointer48endif49endif50LIBRARIAN ?= ar51LINKER_LINK_SHARED_LIBRARY_OPTIONS = -dynamiclib -compatibility_version 1 -current_version 1.0 -install_name $@52HERE = $(shell pwd)53PREINSTALL_PROGRAM_FIXUP = $(POSTINSTALL_PROGRAM) -change lib$(PROGRAM_PREFIX)chicken$(PROGRAM_SUFFIX)$(SO) $(HERE)/lib$(PROGRAM_PREFIX)chicken$(PROGRAM_SUFFIX)$(SO)54POSTINSTALL_PROGRAM_FLAGS = -change lib$(PROGRAM_PREFIX)chicken$(PROGRAM_SUFFIX)$(SO) $(LIBDIR)/lib$(PROGRAM_PREFIX)chicken$(PROGRAM_SUFFIX)$(SO) -change $(HERE)/lib$(PROGRAM_PREFIX)chicken$(PROGRAM_SUFFIX)$(SO) $(LIBDIR)/lib$(PROGRAM_PREFIX)chicken$(PROGRAM_SUFFIX)$(SO)55LIBRARIAN_OPTIONS = scru56LINKER_LINK_SHARED_DLOADABLE_OPTIONS = -bundle -L.57ASSEMBLER_OPTIONS =5859# file extensions6061SO = .dylib6263# special files6465CHICKEN_CONFIG_H = chicken-config.h6667# architectures6869ifeq ($(ARCH),x86-64)70C_COMPILER_OPTIONS += -m6471LINKER_OPTIONS += -m6472# Avoid bus error in install_name_tool73LINKER_LINK_SHARED_DLOADABLE_OPTIONS += -Wl,-headerpad -Wl,12874else7576ifeq ($(ARCH),universal)77C_COMPILER_OPTIONS += -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk78LINKER_OPTIONS += -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk79endif8081endif8283# select default and internal settings8485include $(SRCDIR)/defaults.make8687chicken-config.h: chicken-defaults.h88 echo "/* GENERATED */" >$@.tmp89 echo "#define HAVE_DIRENT_H 1" >>$@.tmp90 echo "#define HAVE_DLFCN_H 1" >>$@.tmp91 echo "#define HAVE_INTTYPES_H 1" >>$@.tmp92 echo "#define HAVE_LIMITS_H 1" >>$@.tmp93 echo "#define HAVE_LONG_LONG 1" >>$@.tmp94 echo "#define HAVE_MEMMOVE 1" >>$@.tmp95 echo "#define HAVE_MEMORY_H 1" >>$@.tmp96 echo "#define HAVE_SIGACTION 1" >>$@.tmp97 echo "#define HAVE_SIGSETJMP 1" >>$@.tmp98 echo "#define HAVE_SIGPROCMASK 1" >>$@.tmp99 echo "#define HAVE_STDINT_H 1" >>$@.tmp100 echo "#define HAVE_STDLIB_H 1" >>$@.tmp101 echo "#define HAVE_STRERROR 1" >>$@.tmp102 echo "#define HAVE_STRINGS_H 1" >>$@.tmp103 echo "#define HAVE_STRING_H 1" >>$@.tmp104 echo "#define HAVE_STRLCAT 1" >>$@.tmp105 echo "#define HAVE_STRLCPY 1" >>$@.tmp106 echo "#define HAVE_STRTOLL 1" >>$@.tmp107 echo "#define HAVE_STRTOQ 1" >>$@.tmp108 echo "#define HAVE_SYS_STAT_H 1" >>$@.tmp109 echo "#define HAVE_SYS_TYPES_H 1" >>$@.tmp110 echo "#define HAVE_SETENV 1" >>$@.tmp111 echo "#define HAVE_UNISTD_H 1" >>$@.tmp112 echo "#define HAVE_UNSIGNED_LONG_LONG 1" >>$@.tmp113 echo "#define STDC_HEADERS 1" >>$@.tmp114 echo "#define HAVE_ALLOCA 1" >>$@.tmp115 echo "#define HAVE_ALLOCA_H 1" >>$@.tmp116 echo "#define HAVE_CRT_EXTERNS_H 1" >>$@.tmp117 echo "#define HAVE_ERRNO_H 1" >>$@.tmp118 echo "#define HAVE_SYSEXITS_H 1" >>$@.tmp119 echo "#define C_STACK_GROWS_DOWNWARD 1" >>$@.tmp120ifdef GCHOOKS121 echo "#define C_GC_HOOKS" >>$@.tmp122endif123 cat $@.tmp chicken-defaults.h >$@.tmp2124 rm $@.tmp125 mv $@.tmp2 $@126127include $(SRCDIR)/rules.make