1 # Makefile for GNU Objective C runtime library.
2 # Copyright 1993, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004,
3 # 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 #This file is part of GCC.
7 #GCC is free software; you can redistribute it and/or modify
8 #it under the terms of the GNU General Public License as published by
9 #the Free Software Foundation; either version 3, or (at your option)
12 #GCC is distributed in the hope that it will be useful,
13 #but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 #GNU General Public License for more details.
17 #You should have received a copy of the GNU General Public License
18 #along with GCC; see the file COPYING3. If not see
19 #<http://www.gnu.org/licenses/>.
21 #This was cribbed from the libchill, libiberty and libstdc++
22 #Makefile.in files. Some of this stuff may be unnecessary and
28 #### Start of system configuration section. ####
30 srcdir = @glibcpp_srcdir@
31 VPATH
= @glibcpp_srcdir@
33 exec_prefix = @
exec_prefix@
34 target_noncanonical
= @target_noncanonical@
35 gcc_version
:= $(shell cat
$(srcdir)/..
/gcc
/BASE-VER
)
36 host_subdir
= @host_subdir@
37 top_srcdir
= @top_srcdir@
38 multi_basedir
= @multi_basedir@
39 toolexecdir
= @toolexecdir@
40 # Toolexecdir is used only by toolexeclibdir
41 toolexeclibdir
= @toolexeclibdir@
43 includedirname
= @includedirname@
44 libsuffix
= @libsuffix@
46 lt_host_flags
= @lt_host_flags@
47 extra_ldflags_libobjc
= @extra_ldflags_libobjc@
51 -include ..
/boehm-gc
/threads.mk
53 libdir = $(exec_prefix)/lib
54 libsubdir
= $(libdir)/gcc
/$(target_noncanonical
)/$(gcc_version
)
56 # Multilib support variables.
64 # Not configured per top-level version, since that doesn't get passed
65 # down at configure time, but overrridden by the top-level install
68 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
69 INSTALL_DATA
= @INSTALL_DATA@
78 WARN_CFLAGS
= -W
-Wall
-Wwrite-strings
-Wstrict-prototypes
79 ALL_CFLAGS
= -I.
-I
$(srcdir) $(CPPFLAGS
) $(DEFS
) $(CFLAGS
) $(WARN_CFLAGS
) \
80 -DIN_GCC
-DIN_TARGET_LIBS
-fno-strict-aliasing
-fexceptions
83 # The following strings describe the version of the obj-C library
84 # begin compiled and compatibility issues.
85 # Please refer to Libtool documentation about how to manage these
87 LIBOBJC_VERSION
= @VERSION@
88 LIBOBJC_GC_VERSION
= @VERSION@
89 LIBTOOL
= @LIBTOOL@
$(LIBTOOLFLAGS
)
90 LIBTOOL_COMPILE
= $(LIBTOOL
) --mode
=compile
91 LIBTOOL_LINK
= $(LIBTOOL
) --mode
=link
92 LIBTOOL_INSTALL
= $(LIBTOOL
) --mode
=install
93 LIBTOOL_CLEAN
= $(LIBTOOL
) --mode
=clean
94 #LIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall
96 OBJC_GCFLAGS
=@OBJC_GCFLAGS@
97 OBJC_BOEHM_GC
=@OBJC_BOEHM_GC@
98 OBJC_BOEHM_GC_INCLUDES
=@OBJC_BOEHM_GC_INCLUDES@
99 OBJC_BOEHM_GC_LIBS
=..
/boehm-gc
/libgcjgc_convenience.la
$(thread_libs_and_flags
)
101 INCLUDES
= -I
$(srcdir)/$(MULTISRCTOP
)..
/gcc \
102 -I
$(srcdir)/$(MULTISRCTOP
)..
/gcc
/config \
103 -I
$(MULTIBUILDTOP
)..
/..
/$(host_subdir
)/gcc \
104 -I
$(srcdir)/$(MULTISRCTOP
)..
/libgcc \
105 -I
$(MULTIBUILDTOP
)..
/libgcc \
106 -I
$(srcdir)/$(MULTISRCTOP
)..
/include \
107 $(OBJC_BOEHM_GC_INCLUDES
)
110 ## The list of header/source files
113 # User-visible header files, from the objc/ directory
127 # Objective-C source files to compile
128 OBJC_SOURCE_FILES
= \
135 # C source files to compile
157 # Object files to link (when the library is linked with no GC (Garbage Collection))
159 $(patsubst %.m
,%.lo
,$(OBJC_SOURCE_FILES
)) \
160 $(patsubst %.c
,%.lo
,$(C_SOURCE_FILES
))
162 # Object files to link (when the library is linked with GC (Garbage Collection))
164 $(patsubst %.m
,%_gc.lo
,$(OBJC_SOURCE_FILES
)) \
165 $(patsubst %.c
,%_gc.lo
,$(C_SOURCE_FILES
))
169 ## The rules to build
172 # Flags to pass to a recursive make.
175 "AR_FLAGS=$(AR_FLAGS)" \
178 "DESTDIR=$(DESTDIR)" \
179 "LIBCFLAGS=$(LIBCFLAGS)" \
180 "EXTRA_OFILES=$(EXTRA_OFILES)" \
181 "HDEFINES=$(HDEFINES)" \
182 "INSTALL=$(INSTALL)" \
183 "INSTALL_DATA=$(INSTALL_DATA)" \
184 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
185 "LDFLAGS=$(LDFLAGS)" \
186 "LIBTOOL=$(LIBTOOL)" \
187 "LOADLIBES=$(LOADLIBES)" \
188 "PICFLAG=$(PICFLAG)" \
192 "exec_prefix=$(exec_prefix)" \
194 "libsubdir=$(libsubdir)" \
197 # The 'all' rule must be the first one so that it is executed if
198 # nothing is specified on the command-line.
199 all: libobjc
$(libsuffix
).la
$(OBJC_BOEHM_GC
)
200 : $(MAKE
) ; exec
$(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
=all
206 $(LIBTOOL_COMPILE
) $(CC
) $< -c \
207 $(ALL_CFLAGS
) $(INCLUDES
) \
211 $(LIBTOOL_COMPILE
) $(CC
) $< -c \
212 $(ALL_CFLAGS
) $(INCLUDES
) $(OBJC_GCFLAGS
) \
216 $(LIBTOOL_COMPILE
) $(CC
) $< -c \
217 $(ALL_CFLAGS
) $(INCLUDES
) -fgnu-runtime \
221 $(LIBTOOL_COMPILE
) $(CC
) $< -c \
222 $(ALL_CFLAGS
) $(INCLUDES
) $(OBJC_GCFLAGS
) -fgnu-runtime \
225 # sendmsg has a special rule because it depends on runtime-info.h.
227 echo
"" > tmp-runtime.m
228 echo
"/* This file is automatically generated */" > $@
229 $(CC
) $(MULTIFLAGS
) -print-objc-runtime-info
-S tmp-runtime.m
>> $@
230 rm -f tmp-runtime.m tmp-runtime.s
232 sendmsg.lo
: sendmsg.c runtime-info.h
233 $(LIBTOOL_COMPILE
) $(CC
) $< -c \
234 $(ALL_CFLAGS
) $(INCLUDES
) \
237 sendmsg_gc.lo
: sendmsg.c runtime-info.h
238 $(LIBTOOL_COMPILE
) $(CC
) $< -c \
239 $(ALL_CFLAGS
) $(INCLUDES
) $(OBJC_GCFLAGS
) \
242 # These files have separate rules because they require special
245 exception.lo
: exception.c
246 $(LIBTOOL_COMPILE
) $(CC
) $< -c \
247 $(ALL_CFLAGS
) $(INCLUDES
) -fexceptions \
250 exception_gc.lo
: exception.c
251 $(LIBTOOL_COMPILE
) $(CC
) $< -c \
252 $(ALL_CFLAGS
) $(INCLUDES
) $(OBJC_GCFLAGS
) -fexceptions \
255 doc
: info dvi pdf html
257 # No install-html or install-pdf support
258 .PHONY
: install-html install-pdf install-info
263 LTLDFLAGS
= $(shell $(SHELL
) $(top_srcdir
)/..
/libtool-ldflags
$(LDFLAGS
))
265 libobjc
$(libsuffix
).la
: $(OBJS
)
266 $(LIBTOOL_LINK
) $(CC
) -o
$@
$(OBJS
) \
267 -Wc
,-shared-libgcc
-rpath
$(toolexeclibdir
) \
268 -version-info
$(LIBOBJC_VERSION
) $(extra_ldflags_libobjc
) \
271 libobjc_gc
$(libsuffix
).la
: $(OBJS_GC
)
272 $(LIBTOOL_LINK
) $(CC
) -o
$@
$(OBJS_GC
) $(OBJC_BOEHM_GC_LIBS
) \
273 -Wc
,-shared-libgcc
-rpath
$(toolexeclibdir
) \
274 -version-info
$(LIBOBJC_GC_VERSION
) $(extra_ldflags_libobjc
) \
282 Makefile
: Makefile.in config.status
283 $(SHELL
) config.status
285 config.status
: configure
287 CONFIG_SITE
=no-such-file CC
='$(CC)' AR
='$(AR)' CFLAGS
='$(CFLAGS)' \
288 CPPFLAGS
='$(CPPFLAGS)' $(SHELL
) config.status
--recheck
292 ACLOCAL_AMFLAGS
= -I ..
/config
-I ..
294 $(srcdir)/..
/config
/multi.m4 \
295 $(srcdir)/..
/config
/override.m4 \
296 $(srcdir)/..
/config
/proginstall.m4 \
297 $(srcdir)/..
/ltoptions.m4 \
298 $(srcdir)/..
/ltsugar.m4 \
299 $(srcdir)/..
/ltversion.m4 \
300 $(srcdir)/..
/lt~obsolete.m4 \
301 $(srcdir)/acinclude.m4
303 $(srcdir)/configure
: @MAINT@ configure.ac
$(srcdir)/aclocal.m4
305 cd
$(srcdir) && $(AUTOCONF
)
307 $(srcdir)/aclocal.m4
: @MAINT@
$(aclocal_deps
)
308 cd
$(srcdir) && $(ACLOCAL
) $(ACLOCAL_AMFLAGS
)
310 install: install-libs install-headers
312 install-libs
: installdirs
313 $(SHELL
) $(multi_basedir
)/mkinstalldirs
$(DESTDIR
)$(toolexeclibdir
)
314 $(LIBTOOL_INSTALL
) $(INSTALL
) libobjc
$(libsuffix
).la
$(DESTDIR
)$(toolexeclibdir
);
315 if
[ "$(OBJC_BOEHM_GC)" ]; then \
316 $(LIBTOOL_INSTALL
) $(INSTALL
) libobjc_gc
$(libsuffix
).la \
317 $(DESTDIR
)$(toolexeclibdir
);\
319 $(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
="$@"
320 @
-$(LIBTOOL
) --mode
=finish
$(DESTDIR
)$(toolexeclibdir
)
322 # Copy Objective-C headers to installation include directory.
324 $(SHELL
) $(multi_basedir
)/mkinstalldirs
$(DESTDIR
)$(libsubdir
)/$(includedirname
)/objc
325 for file in
$(OBJC_H
); do \
326 realfile
=$(srcdir)/objc
/$${file}; \
327 $(INSTALL_DATA
) $${realfile} $(DESTDIR
)$(libsubdir
)/$(includedirname
)/objc
; \
330 check uninstall install-strip
dist installcheck installdirs:
333 -$(LIBTOOL_CLEAN
) rm -f libobjc
$(libsuffix
).la libobjc_gc
$(libsuffix
).la
*.lo
334 -rm -f runtime-info.h tmp-runtime.s
*.o
*.lo libobjc
* xforward \
335 fflags *.aux
*.cp
*.
dvi *.pdf
*.fn
*.
info *.ky
*.log
*.pg \
336 *.toc
*.tp
*.vr
*.html libobj.exp
337 @
$(MULTICLEAN
) multi-clean DO
=mostlyclean
341 @
$(MULTICLEAN
) multi-clean DO
=clean
344 @
$(MULTICLEAN
) multi-clean DO
=distclean
345 rm -f config.cache config.status Makefile configure
347 maintainer-clean
realclean: distclean
349 .PHONY
: mostlyclean clean distclean maintainer-clean
all check uninstall \
350 install-strip
dist installcheck installdirs
352 # Don't export variables to the environment, in order to not confuse