2003-10-17 13:22:58 +02:00
|
|
|
# Makefile for GNU Objective C runtime library.
|
2006-01-24 22:57:22 +01:00
|
|
|
# Copyright 1993, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004,
|
2010-12-23 12:26:14 +01:00
|
|
|
# 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
1998-09-30 04:13:15 +02:00
|
|
|
|
Makefile.in, [...]: Replace "GNU CC" with "GCC".
2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
objc/objc-list.h, objc/objc.h, ocjc/runtime.h, objc/sarray.h,
objc/thr.h, objc/typedstream.h: Replace "GNU CC" with "GCC".
From-SVN: r67131
2003-05-23 22:04:58 +02:00
|
|
|
#This file is part of GCC.
|
1998-09-30 04:13:15 +02:00
|
|
|
|
Makefile.in, [...]: Replace "GNU CC" with "GCC".
2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
objc/objc-list.h, objc/objc.h, ocjc/runtime.h, objc/sarray.h,
objc/thr.h, objc/typedstream.h: Replace "GNU CC" with "GCC".
From-SVN: r67131
2003-05-23 22:04:58 +02:00
|
|
|
#GCC is free software; you can redistribute it and/or modify
|
1998-09-30 04:13:15 +02:00
|
|
|
#it under the terms of the GNU General Public License as published by
|
2009-04-09 17:00:19 +02:00
|
|
|
#the Free Software Foundation; either version 3, or (at your option)
|
1998-09-30 04:13:15 +02:00
|
|
|
#any later version.
|
|
|
|
|
Makefile.in, [...]: Replace "GNU CC" with "GCC".
2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
objc/objc-list.h, objc/objc.h, ocjc/runtime.h, objc/sarray.h,
objc/thr.h, objc/typedstream.h: Replace "GNU CC" with "GCC".
From-SVN: r67131
2003-05-23 22:04:58 +02:00
|
|
|
#GCC is distributed in the hope that it will be useful,
|
1998-09-30 04:13:15 +02:00
|
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
#GNU General Public License for more details.
|
|
|
|
|
|
|
|
#You should have received a copy of the GNU General Public License
|
2009-04-09 17:00:19 +02:00
|
|
|
#along with GCC; see the file COPYING3. If not see
|
|
|
|
#<http://www.gnu.org/licenses/>.
|
1998-09-30 04:13:15 +02:00
|
|
|
|
|
|
|
#This was cribbed from the libchill, libiberty and libstdc++
|
|
|
|
#Makefile.in files. Some of this stuff may be unnecessary and
|
|
|
|
#worthless.
|
|
|
|
|
2002-05-20 18:35:19 +02:00
|
|
|
SHELL = @SHELL@
|
2002-02-11 19:10:05 +01:00
|
|
|
MAKEOVERRIDES=
|
1998-09-30 04:13:15 +02:00
|
|
|
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
|
2002-02-11 19:10:05 +01:00
|
|
|
srcdir = @glibcpp_srcdir@
|
|
|
|
VPATH = @glibcpp_srcdir@
|
1998-09-30 04:13:15 +02:00
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
2004-04-09 13:43:02 +02:00
|
|
|
target_noncanonical = @target_noncanonical@
|
2005-03-21 18:42:26 +01:00
|
|
|
gcc_version := $(shell cat $(srcdir)/../gcc/BASE-VER)
|
re PR bootstrap/17383 (Building in src dir fails)
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* Makefile.def (target_modules): Remove "stage", now unnecessary.
* Makefile.tpl (HOST_SUBDIR): New substitution.
(STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
(Host modules, Bootstrapped modules): Use it.
(Build modules, Target modules): Do not create symlink trees,
always configure out-of-srcdir.
(distclean): Try removing $(host_subdir) with rm before using rm -rf.
* configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
$(HOST_SUBDIR). Create a symlink for host_subdir.
* Makefile.in: Regenerate.
* configure: Regenerate.
config:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* config/acx.m4 (GCC_TOPLEV_SUBDIRS): Set HOST_SUBDIR if an in-src
gcc build is going.
gcc:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* gcc/Makefile.in (host_subdir): New.
(build_objdir): New. Replace ../$(build_subdir) with it throughout.
* gcc/configure: Regenerate.
libada:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* Makefile.in (GCC_DIR): Add $(HOST_SUBDIR) to the definition.
libjava:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* configure.ac: Call GCC_TOPLEV_SUBDIRS.
(COMPPATH): Removed.
(ZIP, GCJH): Replace it with ../$(host_subdir).
(built_gcc_dir): Add $(host_subdir).
* configure: Regenerate.
* Makefile.in, include/Makefile.in, testsuite/Makefile.in,
gcj/Makefile.in, external/Makefile.in, external/sax/Makefile.in,
external/w3c_dom/Makefile.in: Regenerate.
libobjc:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* configure.ac: Call GCC_TOPLEV_SUBDIRS.
(Determine CFLAGS for gthread): Use $host_subdir.
* configure: Regenerate.
* Makefile.in (host_subdir): New.
(INCLUDES): Use it.
From-SVN: r95680
2005-02-28 14:26:36 +01:00
|
|
|
host_subdir = @host_subdir@
|
2002-02-11 19:10:05 +01:00
|
|
|
top_srcdir = @top_srcdir@
|
2006-10-15 09:42:57 +02:00
|
|
|
multi_basedir = @multi_basedir@
|
2004-05-09 22:24:26 +02:00
|
|
|
toolexecdir = @toolexecdir@
|
2004-04-14 22:08:02 +02:00
|
|
|
# Toolexecdir is used only by toolexeclibdir
|
2004-04-09 15:08:31 +02:00
|
|
|
toolexeclibdir = @toolexeclibdir@
|
2002-02-11 19:10:05 +01:00
|
|
|
|
2004-05-26 03:21:46 +02:00
|
|
|
includedirname = @includedirname@
|
2007-06-02 03:35:59 +02:00
|
|
|
libsuffix = @libsuffix@
|
2004-05-26 00:39:02 +02:00
|
|
|
|
2010-12-06 01:50:04 +01:00
|
|
|
lt_host_flags = @lt_host_flags@
|
2005-08-14 01:44:14 +02:00
|
|
|
extra_ldflags_libobjc = @extra_ldflags_libobjc@
|
|
|
|
|
2002-02-11 19:10:05 +01:00
|
|
|
top_builddir = .
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2008-07-18 18:30:04 +02:00
|
|
|
-include ../boehm-gc/threads.mk
|
2008-07-18 10:15:27 +02:00
|
|
|
|
1998-09-30 04:13:15 +02:00
|
|
|
libdir = $(exec_prefix)/lib
|
2004-04-09 13:43:02 +02:00
|
|
|
libsubdir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)
|
1998-09-30 04:13:15 +02:00
|
|
|
|
|
|
|
# Multilib support variables.
|
|
|
|
MULTISRCTOP =
|
|
|
|
MULTIBUILDTOP =
|
|
|
|
MULTIDIRS =
|
|
|
|
MULTISUBDIR =
|
|
|
|
MULTIDO = true
|
|
|
|
MULTICLEAN = true
|
|
|
|
|
|
|
|
# Not configured per top-level version, since that doesn't get passed
|
|
|
|
# down at configure time, but overrridden by the top-level install
|
|
|
|
# target.
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
|
|
|
|
AR = @AR@
|
|
|
|
AR_FLAGS = rc
|
|
|
|
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
|
|
|
|
CC = @CC@
|
|
|
|
CFLAGS = @CFLAGS@
|
2002-05-20 18:35:19 +02:00
|
|
|
WARN_CFLAGS = -W -Wall -Wwrite-strings -Wstrict-prototypes
|
|
|
|
ALL_CFLAGS = -I. -I$(srcdir) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(WARN_CFLAGS) \
|
2005-07-26 16:27:33 +02:00
|
|
|
-DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2000-07-29 21:19:43 +02:00
|
|
|
# Libtool
|
|
|
|
# The following strings describe the version of the obj-C library
|
|
|
|
# begin compiled and compatibility issues.
|
|
|
|
# Please refer to Libtool documentation about how to manage these
|
|
|
|
# numbers.
|
2004-03-15 19:52:38 +01:00
|
|
|
LIBOBJC_VERSION = @VERSION@
|
|
|
|
LIBOBJC_GC_VERSION = @VERSION@
|
LIBTOOLFLAGS, and *_LINK fixes for Automake 1.11
boehm-gc/:
* Makefile.am (LTCOMPILE, LTLINK): Add $(AM_LIBTOOLFLAGS)
and $(LIBTOOLFLAGS).
* Makefile.in: Regenerate.
libgfortran/:
* Makefile.am (libgfortran_la_LINK): Add $(libgfortran_la_LDFLAGS).
* Makefile.in: Regenerate.
libjava/:
* Makefile.am (libgcj_la_LINK, libgcj_tools_la_LINK)
(lib_gnu_awt_xlib_la_LINK, libgcj_bc_la_LINK, jv_convert_LINK)
(gcj_dbtool_LINK, gc_analyze_LINK, gij_LINK, ecjx_LINK)
(gappletviewer_LINK, gjarsigner_LINK, gkeytool_LINK)
(gjar_LINK, gjavah_LINK, gcjh_LINK, gnative2ascii_LINK)
(gorbd_LINK, grmid_LINK, gserialver_LINK, gtnameserv_LINK)
(grmic_LINK, grmiregistry_LINK, gjdoc_LINK): Add $(gjdoc_LDFLAGS).
(GCJLINK, LIBLINK, CXXLINK): Add $(LIBTOOLFLAGS).
* Makefile.in: Regenerate.
libstdc++-v3/:
* libsupc++/Makefile.am (LTCOMPILE, LTCXXCOMPILE, CXXLINK): Add
$(LIBTOOLFLAGS).
* libsupc++/Makefile.in: Regenerate.
* src/Makefile.am (LTCXXCOMPILE, CXXLINK): Add $(AM_LIBTOOLFLAGS)
and $(LIBTOOLFLAGS).
* src/Makefile.in: Regenerate.
libgomp/:
* Makefile.am (LINK): Add $(AM_LIBTOOLFLAGS) and $(LIBTOOLFLAGS).
* Makefile.in: Regenerate.
libobjc/:
* Makefile.in (LIBTOOL): Add $(LIBTOOLFLAGS).
From-SVN: r151013
2009-08-22 14:43:24 +02:00
|
|
|
LIBTOOL = @LIBTOOL@ $(LIBTOOLFLAGS)
|
2000-07-29 21:19:43 +02:00
|
|
|
LIBTOOL_COMPILE = $(LIBTOOL) --mode=compile
|
|
|
|
LIBTOOL_LINK = $(LIBTOOL) --mode=link
|
|
|
|
LIBTOOL_INSTALL = $(LIBTOOL) --mode=install
|
|
|
|
LIBTOOL_CLEAN = $(LIBTOOL) --mode=clean
|
|
|
|
#LIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall
|
|
|
|
|
2006-01-24 22:57:22 +01:00
|
|
|
OBJC_GCFLAGS=-DOBJC_WITH_GC=1
|
|
|
|
OBJC_BOEHM_GC=@OBJC_BOEHM_GC@
|
|
|
|
OBJC_BOEHM_GC_INCLUDES=@OBJC_BOEHM_GC_INCLUDES@
|
2008-07-18 10:15:27 +02:00
|
|
|
OBJC_BOEHM_GC_LIBS=../boehm-gc/libgcjgc_convenience.la $(thread_libs_and_flags)
|
2006-01-24 22:57:22 +01:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
INCLUDES = -I$(srcdir)/$(MULTISRCTOP)../gcc \
|
re PR bootstrap/17383 (Building in src dir fails)
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* Makefile.def (target_modules): Remove "stage", now unnecessary.
* Makefile.tpl (HOST_SUBDIR): New substitution.
(STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
(Host modules, Bootstrapped modules): Use it.
(Build modules, Target modules): Do not create symlink trees,
always configure out-of-srcdir.
(distclean): Try removing $(host_subdir) with rm before using rm -rf.
* configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
$(HOST_SUBDIR). Create a symlink for host_subdir.
* Makefile.in: Regenerate.
* configure: Regenerate.
config:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* config/acx.m4 (GCC_TOPLEV_SUBDIRS): Set HOST_SUBDIR if an in-src
gcc build is going.
gcc:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* gcc/Makefile.in (host_subdir): New.
(build_objdir): New. Replace ../$(build_subdir) with it throughout.
* gcc/configure: Regenerate.
libada:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* Makefile.in (GCC_DIR): Add $(HOST_SUBDIR) to the definition.
libjava:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* configure.ac: Call GCC_TOPLEV_SUBDIRS.
(COMPPATH): Removed.
(ZIP, GCJH): Replace it with ../$(host_subdir).
(built_gcc_dir): Add $(host_subdir).
* configure: Regenerate.
* Makefile.in, include/Makefile.in, testsuite/Makefile.in,
gcj/Makefile.in, external/Makefile.in, external/sax/Makefile.in,
external/w3c_dom/Makefile.in: Regenerate.
libobjc:
2005-05-25 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/17383
* configure.ac: Call GCC_TOPLEV_SUBDIRS.
(Determine CFLAGS for gthread): Use $host_subdir.
* configure: Regenerate.
* Makefile.in (host_subdir): New.
(INCLUDES): Use it.
From-SVN: r95680
2005-02-28 14:26:36 +01:00
|
|
|
-I$(srcdir)/$(MULTISRCTOP)../gcc/config \
|
|
|
|
-I$(MULTIBUILDTOP)../../$(host_subdir)/gcc \
|
2006-01-24 22:57:22 +01:00
|
|
|
-I$(srcdir)/$(MULTISRCTOP)../include \
|
|
|
|
$(OBJC_BOEHM_GC_INCLUDES)
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
##
|
|
|
|
## The list of header/source files
|
|
|
|
##
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-10 11:56:40 +02:00
|
|
|
# User-visible header files, from the objc/ directory
|
2010-09-11 14:38:56 +02:00
|
|
|
OBJC_H = \
|
|
|
|
objc.h \
|
|
|
|
objc-exception.h \
|
2010-09-14 12:23:37 +02:00
|
|
|
objc-sync.h \
|
2010-09-11 14:38:56 +02:00
|
|
|
\
|
|
|
|
NXConstStr.h \
|
|
|
|
Object.h \
|
|
|
|
Protocol.h \
|
|
|
|
encoding.h \
|
2010-09-12 02:43:15 +02:00
|
|
|
message.h \
|
|
|
|
objc-api.h \
|
|
|
|
objc-decls.h \
|
2010-10-06 12:10:14 +02:00
|
|
|
runtime.h \
|
2010-09-11 14:38:56 +02:00
|
|
|
thr.h \
|
2010-09-12 16:55:21 +02:00
|
|
|
\
|
2010-09-17 18:52:36 +02:00
|
|
|
hash.h \
|
|
|
|
objc-list.h \
|
2010-09-18 11:34:58 +02:00
|
|
|
sarray.h \
|
2010-09-12 02:43:15 +02:00
|
|
|
typedstream.h
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-10 11:56:40 +02:00
|
|
|
# User-visible header files containing deprecated APIs, from the
|
|
|
|
# objc/deprecated directory
|
2010-09-11 14:38:56 +02:00
|
|
|
OBJC_DEPRECATED_H = \
|
2010-10-10 00:22:23 +02:00
|
|
|
METHOD_NULL.h \
|
2010-09-11 14:38:56 +02:00
|
|
|
MetaClass.h \
|
|
|
|
Object.h \
|
2010-12-19 01:54:27 +01:00
|
|
|
Protocol.h \
|
2010-09-11 14:38:56 +02:00
|
|
|
STR.h \
|
2010-09-17 18:35:15 +02:00
|
|
|
hash.h \
|
|
|
|
objc-list.h \
|
2010-09-12 02:43:15 +02:00
|
|
|
objc_error.h \
|
2010-10-13 03:08:43 +02:00
|
|
|
objc_get_uninstalled_dtable.h \
|
2010-09-12 03:44:58 +02:00
|
|
|
objc_malloc.h \
|
2010-12-19 02:29:09 +01:00
|
|
|
objc_msg_sendv.h \
|
2010-10-13 03:08:43 +02:00
|
|
|
objc_object_alloc.h \
|
2010-09-11 14:38:56 +02:00
|
|
|
objc_unexpected_exception.h \
|
2010-09-12 03:44:58 +02:00
|
|
|
objc_valloc.h \
|
2010-09-18 11:34:58 +02:00
|
|
|
sarray.h \
|
2010-10-10 13:18:57 +02:00
|
|
|
struct_objc_category.h \
|
2010-09-11 14:38:56 +02:00
|
|
|
struct_objc_class.h \
|
2010-10-10 13:18:57 +02:00
|
|
|
struct_objc_ivar.h \
|
|
|
|
struct_objc_ivar_list.h \
|
|
|
|
struct_objc_method.h \
|
|
|
|
struct_objc_method_list.h \
|
|
|
|
struct_objc_module.h \
|
2010-09-11 14:38:56 +02:00
|
|
|
struct_objc_protocol.h \
|
2010-10-10 13:18:57 +02:00
|
|
|
struct_objc_protocol_list.h \
|
2010-09-11 14:38:56 +02:00
|
|
|
struct_objc_selector.h \
|
2010-10-13 03:08:43 +02:00
|
|
|
struct_objc_static_instances.h \
|
2010-10-10 13:18:57 +02:00
|
|
|
struct_objc_symtab.h \
|
2010-09-11 14:38:56 +02:00
|
|
|
typedstream.h
|
2010-09-10 11:56:40 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
# Objective-C source files to compile
|
|
|
|
OBJC_SOURCE_FILES = \
|
|
|
|
NXConstStr.m \
|
|
|
|
Object.m \
|
|
|
|
Protocol.m \
|
2010-10-24 19:23:19 +02:00
|
|
|
accessors.m \
|
2010-09-12 16:55:21 +02:00
|
|
|
linking.m
|
|
|
|
|
|
|
|
# C source files to compile
|
|
|
|
C_SOURCE_FILES = \
|
|
|
|
archive.c \
|
|
|
|
class.c \
|
|
|
|
encoding.c \
|
|
|
|
error.c \
|
|
|
|
gc.c \
|
|
|
|
hash.c \
|
|
|
|
init.c \
|
2010-10-11 04:36:32 +02:00
|
|
|
ivars.c \
|
2010-09-12 16:55:21 +02:00
|
|
|
memory.c \
|
2010-10-13 00:00:01 +02:00
|
|
|
methods.c \
|
2010-09-12 16:55:21 +02:00
|
|
|
nil_method.c \
|
2010-10-06 12:10:14 +02:00
|
|
|
objc-foreach.c \
|
2010-09-14 12:23:37 +02:00
|
|
|
objc-sync.c \
|
2010-09-12 16:55:21 +02:00
|
|
|
objects.c \
|
2010-10-12 04:43:25 +02:00
|
|
|
protocols.c \
|
2010-09-12 16:55:21 +02:00
|
|
|
sarray.c \
|
|
|
|
selector.c \
|
|
|
|
sendmsg.c \
|
|
|
|
thr.c \
|
|
|
|
exception.c
|
|
|
|
|
|
|
|
# Object files to link (when the library is linked with no GC (Garbage Collection))
|
|
|
|
OBJS = \
|
|
|
|
$(patsubst %.m,%.lo,$(OBJC_SOURCE_FILES)) \
|
|
|
|
$(patsubst %.c,%.lo,$(C_SOURCE_FILES))
|
|
|
|
|
|
|
|
# Object files to link (when the library is linked with GC (Garbage Collection))
|
2010-09-12 02:43:15 +02:00
|
|
|
OBJS_GC = \
|
2010-09-12 16:55:21 +02:00
|
|
|
$(patsubst %.m,%_gc.lo,$(OBJC_SOURCE_FILES)) \
|
|
|
|
$(patsubst %.c,%_gc.lo,$(C_SOURCE_FILES))
|
1998-09-30 04:13:15 +02:00
|
|
|
|
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
##
|
|
|
|
## The rules to build
|
|
|
|
##
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
# Flags to pass to a recursive make.
|
|
|
|
FLAGS_TO_PASS = \
|
|
|
|
"AR=$(AR)" \
|
|
|
|
"AR_FLAGS=$(AR_FLAGS)" \
|
|
|
|
"CC=$(CC)" \
|
|
|
|
"CFLAGS=$(CFLAGS)" \
|
|
|
|
"DESTDIR=$(DESTDIR)" \
|
|
|
|
"LIBCFLAGS=$(LIBCFLAGS)" \
|
|
|
|
"EXTRA_OFILES=$(EXTRA_OFILES)" \
|
|
|
|
"HDEFINES=$(HDEFINES)" \
|
|
|
|
"INSTALL=$(INSTALL)" \
|
|
|
|
"INSTALL_DATA=$(INSTALL_DATA)" \
|
|
|
|
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
|
|
|
|
"LDFLAGS=$(LDFLAGS)" \
|
|
|
|
"LIBTOOL=$(LIBTOOL)" \
|
|
|
|
"LOADLIBES=$(LOADLIBES)" \
|
|
|
|
"PICFLAG=$(PICFLAG)" \
|
|
|
|
"RANLIB=$(RANLIB)" \
|
|
|
|
"SHELL=$(SHELL)" \
|
|
|
|
"prefix=$(prefix)" \
|
|
|
|
"exec_prefix=$(exec_prefix)" \
|
|
|
|
"libdir=$(libdir)" \
|
|
|
|
"libsubdir=$(libsubdir)" \
|
|
|
|
"tooldir=$(tooldir)"
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
# The 'all' rule must be the first one so that it is executed if
|
|
|
|
# nothing is specified on the command-line.
|
|
|
|
all: libobjc$(libsuffix).la $(OBJC_BOEHM_GC)
|
|
|
|
: $(MAKE) ; exec $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
|
2010-09-12 02:43:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .c .m .lo
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
%.lo: %.c
|
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
%_gc.lo: %.c
|
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
%.lo: %.m
|
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) -fgnu-runtime \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
%_gc.lo: %.m
|
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) -fgnu-runtime \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
# sendmsg has a special rule because it depends on runtime-info.h.
|
|
|
|
runtime-info.h:
|
|
|
|
echo "" > tmp-runtime.m
|
|
|
|
echo "/* This file is automatically generated */" > $@
|
|
|
|
$(CC) $(MULTIFLAGS) -print-objc-runtime-info -S tmp-runtime.m >> $@
|
|
|
|
rm -f tmp-runtime.m tmp-runtime.s
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
sendmsg.lo: sendmsg.c runtime-info.h
|
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
sendmsg_gc.lo: sendmsg.c runtime-info.h
|
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
# These files have separate rules because they require special
|
|
|
|
# compiler flags.
|
|
|
|
archive.lo: archive.c
|
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) -Wno-deprecated-declarations \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
archive_gc.lo: archive.c
|
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) -Wno-deprecated-declarations \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-08 20:02:53 +02:00
|
|
|
# -Wno-deprecated-declarations is for the objc/typedstream.h functions.
|
2000-07-29 21:19:43 +02:00
|
|
|
Object.lo: Object.m
|
2010-09-12 16:55:21 +02:00
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) -fgnu-runtime -Wno-deprecated-declarations \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-08 20:02:53 +02:00
|
|
|
# -Wno-deprecated-declarations is for the objc/typedstream.h functions.
|
2000-07-29 21:19:43 +02:00
|
|
|
Object_gc.lo: Object.m
|
2010-09-12 16:55:21 +02:00
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) -fgnu-runtime -Wno-deprecated-declarations \
|
|
|
|
-o $@
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-08 23:03:09 +02:00
|
|
|
# -Wno-deprecated-declarations is to silence warnings from using
|
|
|
|
# _objc_unexpected_exception.
|
2004-06-18 03:00:28 +02:00
|
|
|
exception.lo: exception.c
|
2010-09-12 16:55:21 +02:00
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) -fexceptions -Wno-deprecated-declarations \
|
|
|
|
-o $@
|
2004-06-20 01:46:27 +02:00
|
|
|
|
|
|
|
exception_gc.lo: exception.c
|
2010-09-12 16:55:21 +02:00
|
|
|
$(LIBTOOL_COMPILE) $(CC) $< -c \
|
|
|
|
$(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) -fexceptions -Wno-deprecated-declarations \
|
|
|
|
-o $@
|
2004-06-18 03:00:28 +02:00
|
|
|
|
2006-10-11 01:48:09 +02:00
|
|
|
doc: info dvi pdf html
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2007-03-02 00:58:28 +01:00
|
|
|
# No install-html or install-pdf support
|
2008-07-06 11:40:39 +02:00
|
|
|
.PHONY: install-html install-pdf install-info
|
2006-05-24 03:22:17 +02:00
|
|
|
install-html:
|
2007-03-02 00:58:28 +01:00
|
|
|
install-pdf:
|
2008-07-06 11:40:39 +02:00
|
|
|
install-info:
|
2006-05-24 03:22:17 +02:00
|
|
|
|
2008-05-09 12:10:53 +02:00
|
|
|
LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
|
|
|
|
|
2007-06-02 03:35:59 +02:00
|
|
|
libobjc$(libsuffix).la: $(OBJS)
|
2002-02-11 19:10:05 +01:00
|
|
|
$(LIBTOOL_LINK) $(CC) -o $@ $(OBJS) \
|
2010-12-23 12:26:14 +01:00
|
|
|
-Wc,-shared-libgcc -rpath $(toolexeclibdir) \
|
2008-05-09 12:10:53 +02:00
|
|
|
-version-info $(LIBOBJC_VERSION) $(extra_ldflags_libobjc) \
|
|
|
|
$(LTLDFLAGS)
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2007-06-02 03:35:59 +02:00
|
|
|
libobjc_gc$(libsuffix).la: $(OBJS_GC)
|
2008-07-18 10:15:27 +02:00
|
|
|
$(LIBTOOL_LINK) $(CC) -o $@ $(OBJS_GC) $(OBJC_BOEHM_GC_LIBS) \
|
2010-12-23 12:26:14 +01:00
|
|
|
-Wc,-shared-libgcc -rpath $(toolexeclibdir) \
|
2008-05-09 12:10:53 +02:00
|
|
|
-version-info $(LIBOBJC_GC_VERSION) $(extra_ldflags_libobjc) \
|
|
|
|
$(LTLDFLAGS)
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2001-05-09 16:16:47 +02:00
|
|
|
info:
|
|
|
|
dvi:
|
2006-10-11 01:48:09 +02:00
|
|
|
pdf:
|
2001-05-09 16:16:47 +02:00
|
|
|
html:
|
1998-09-30 04:13:15 +02:00
|
|
|
|
|
|
|
Makefile: Makefile.in config.status
|
|
|
|
$(SHELL) config.status
|
|
|
|
|
|
|
|
config.status: configure
|
|
|
|
rm -f config.cache
|
|
|
|
CONFIG_SITE=no-such-file CC='$(CC)' AR='$(AR)' CFLAGS='$(CFLAGS)' \
|
|
|
|
CPPFLAGS='$(CPPFLAGS)' $(SHELL) config.status --recheck
|
|
|
|
|
Makefile.in (AUTOCONF, [...]): New variables.
fixincludes/
* Makefile.in (AUTOCONF, AUTOHEADER, ACLOCAL, ACLOCAL_AMFLAGS):
New variables.
($(srcdir)/configure, $(srcdir)/config.h.in, $(srcdir)/aclocal.m4):
Use them.
gcc/
* Makefile.in (AUTOCONF, ACLOCAL, ACLOCAL_AMFLAGS, aclocal_deps):
New variables.
($(srcdir)/configure, $(srcdir)/aclocal.m4): New rules.
(AUTOHEADER): New variable.
($(srcdir)/cstamp-h.in): Use it.
gnattools/
* Makefile.in (AUTOCONF, configure_deps): New variables.
($(srcdir)/configure): Use them.
libada/
* Makefile.in (AUTOCONF, configure_deps): New variables.
($(srcdir)/configure)): Use them. Also depend on multi.m4.
libgcc/
* configure.ac: Add snippet for maintainer-mode.
* configure: Regenerate.
* Makefile.in (AUTOCONF, configure_deps): New variables.
($(srcdir)/configure)): New rule, active only with maintainer
mode turned on.
libiberty/
* Makefile.in (AUTOCONF, configure_deps): New variables.
($(srcdir)/configure): New rule, active only in maintainer mode.
libobjc/
* Makefile.in (AUTOCONF, ACLOCAL, ACLOCAL_AMFLAGS, aclocal_deps):
New variables.
($(srcdir)/configure, $(srcdir)/aclocal.m4): New rules.
intl/
* Makefile.in (aclocal_deps): New variable.
($(srcdir)/aclocal.m4): Use it, for portable makefile syntax.
libdecnumber/
* Makefile.in (aclocal_deps): New variable.
($(srcdir)/aclocal.m4): Use it, for portable makefile syntax.
From-SVN: r150277
2009-07-31 00:33:49 +02:00
|
|
|
AUTOCONF = autoconf
|
|
|
|
ACLOCAL = aclocal
|
|
|
|
ACLOCAL_AMFLAGS = -I ../config -I ..
|
|
|
|
aclocal_deps = \
|
|
|
|
$(srcdir)/../config/multi.m4 \
|
|
|
|
$(srcdir)/../config/override.m4 \
|
|
|
|
$(srcdir)/../config/proginstall.m4 \
|
|
|
|
$(srcdir)/../ltoptions.m4 \
|
|
|
|
$(srcdir)/../ltsugar.m4 \
|
|
|
|
$(srcdir)/../ltversion.m4 \
|
|
|
|
$(srcdir)/../lt~obsolete.m4 \
|
|
|
|
$(srcdir)/acinclude.m4
|
|
|
|
|
|
|
|
$(srcdir)/configure: @MAINT@ configure.ac $(srcdir)/aclocal.m4
|
1998-09-30 04:13:15 +02:00
|
|
|
rm -f config.cache
|
Makefile.in (AUTOCONF, [...]): New variables.
fixincludes/
* Makefile.in (AUTOCONF, AUTOHEADER, ACLOCAL, ACLOCAL_AMFLAGS):
New variables.
($(srcdir)/configure, $(srcdir)/config.h.in, $(srcdir)/aclocal.m4):
Use them.
gcc/
* Makefile.in (AUTOCONF, ACLOCAL, ACLOCAL_AMFLAGS, aclocal_deps):
New variables.
($(srcdir)/configure, $(srcdir)/aclocal.m4): New rules.
(AUTOHEADER): New variable.
($(srcdir)/cstamp-h.in): Use it.
gnattools/
* Makefile.in (AUTOCONF, configure_deps): New variables.
($(srcdir)/configure): Use them.
libada/
* Makefile.in (AUTOCONF, configure_deps): New variables.
($(srcdir)/configure)): Use them. Also depend on multi.m4.
libgcc/
* configure.ac: Add snippet for maintainer-mode.
* configure: Regenerate.
* Makefile.in (AUTOCONF, configure_deps): New variables.
($(srcdir)/configure)): New rule, active only with maintainer
mode turned on.
libiberty/
* Makefile.in (AUTOCONF, configure_deps): New variables.
($(srcdir)/configure): New rule, active only in maintainer mode.
libobjc/
* Makefile.in (AUTOCONF, ACLOCAL, ACLOCAL_AMFLAGS, aclocal_deps):
New variables.
($(srcdir)/configure, $(srcdir)/aclocal.m4): New rules.
intl/
* Makefile.in (aclocal_deps): New variable.
($(srcdir)/aclocal.m4): Use it, for portable makefile syntax.
libdecnumber/
* Makefile.in (aclocal_deps): New variable.
($(srcdir)/aclocal.m4): Use it, for portable makefile syntax.
From-SVN: r150277
2009-07-31 00:33:49 +02:00
|
|
|
cd $(srcdir) && $(AUTOCONF)
|
|
|
|
|
|
|
|
$(srcdir)/aclocal.m4: @MAINT@ $(aclocal_deps)
|
|
|
|
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2002-02-11 19:10:05 +01:00
|
|
|
install: install-libs install-headers
|
1998-09-30 04:13:15 +02:00
|
|
|
|
|
|
|
install-libs: installdirs
|
2006-10-15 09:42:57 +02:00
|
|
|
$(SHELL) $(multi_basedir)/mkinstalldirs $(DESTDIR)$(toolexeclibdir)
|
2007-06-02 03:35:59 +02:00
|
|
|
$(LIBTOOL_INSTALL) $(INSTALL) libobjc$(libsuffix).la $(DESTDIR)$(toolexeclibdir);
|
2000-07-29 21:19:43 +02:00
|
|
|
if [ "$(OBJC_BOEHM_GC)" ]; then \
|
2007-06-02 03:35:59 +02:00
|
|
|
$(LIBTOOL_INSTALL) $(INSTALL) libobjc_gc$(libsuffix).la \
|
2004-04-09 15:08:31 +02:00
|
|
|
$(DESTDIR)$(toolexeclibdir);\
|
2000-07-29 21:19:43 +02:00
|
|
|
fi
|
2002-02-11 19:10:05 +01:00
|
|
|
$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"
|
2004-04-09 15:08:31 +02:00
|
|
|
@-$(LIBTOOL) --mode=finish $(DESTDIR)$(toolexeclibdir)
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2010-09-12 16:55:21 +02:00
|
|
|
# Copy Objective-C headers to installation include directory.
|
2002-02-11 19:10:05 +01:00
|
|
|
install-headers:
|
2006-10-15 09:42:57 +02:00
|
|
|
$(SHELL) $(multi_basedir)/mkinstalldirs $(DESTDIR)$(libsubdir)/$(includedirname)/objc
|
1998-09-30 04:13:15 +02:00
|
|
|
for file in $(OBJC_H); do \
|
1998-09-30 10:17:56 +02:00
|
|
|
realfile=$(srcdir)/objc/$${file}; \
|
2004-05-26 03:21:46 +02:00
|
|
|
$(INSTALL_DATA) $${realfile} $(DESTDIR)$(libsubdir)/$(includedirname)/objc; \
|
1998-09-30 04:13:15 +02:00
|
|
|
done
|
2010-09-10 11:56:40 +02:00
|
|
|
$(multi_basedir)/mkinstalldirs $(DESTDIR)$(libsubdir)/$(includedirname)/objc/deprecated
|
|
|
|
for file in $(OBJC_DEPRECATED_H); do \
|
|
|
|
realfile=$(srcdir)/objc/deprecated/$${file}; \
|
|
|
|
$(INSTALL_DATA) $${realfile} $(DESTDIR)$(libsubdir)/$(includedirname)/objc/deprecated; \
|
|
|
|
done
|
1998-09-30 04:13:15 +02:00
|
|
|
|
|
|
|
check uninstall install-strip dist installcheck installdirs:
|
|
|
|
|
|
|
|
mostlyclean:
|
2007-06-02 03:35:59 +02:00
|
|
|
-$(LIBTOOL_CLEAN) rm -f libobjc$(libsuffix).la libobjc_gc$(libsuffix).la *.lo
|
2000-07-29 21:19:43 +02:00
|
|
|
-rm -f runtime-info.h tmp-runtime.s *.o *.lo libobjc* xforward \
|
2006-10-11 01:48:09 +02:00
|
|
|
fflags *.aux *.cp *.dvi *.pdf *.fn *.info *.ky *.log *.pg \
|
1998-09-30 04:13:15 +02:00
|
|
|
*.toc *.tp *.vr *.html libobj.exp
|
|
|
|
@$(MULTICLEAN) multi-clean DO=mostlyclean
|
|
|
|
|
|
|
|
clean: mostlyclean
|
|
|
|
rm -f config.log
|
|
|
|
@$(MULTICLEAN) multi-clean DO=clean
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
@$(MULTICLEAN) multi-clean DO=distclean
|
|
|
|
rm -f config.cache config.status Makefile configure
|
|
|
|
|
|
|
|
maintainer-clean realclean: distclean
|
|
|
|
|
|
|
|
.PHONY: mostlyclean clean distclean maintainer-clean all check uninstall \
|
|
|
|
install-strip dist installcheck installdirs
|
2004-05-25 21:37:02 +02:00
|
|
|
|
|
|
|
# Don't export variables to the environment, in order to not confuse
|
|
|
|
# configure.
|
|
|
|
.NOEXPORT:
|