Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / libobjc / Makefile.in
blob437764f49980bb6aa872a87872114f2446337091
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 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)
10 #any later version.
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
23 #worthless.
25 SHELL = @SHELL@
26 MAKEOVERRIDES=
28 #### Start of system configuration section. ####
30 srcdir = @glibcpp_srcdir@
31 VPATH = @glibcpp_srcdir@
32 prefix = @prefix@
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 extra_ldflags_libobjc = @extra_ldflags_libobjc@
48 top_builddir = .
50 -include ../boehm-gc/threads.mk
52 libdir = $(exec_prefix)/lib
53 libsubdir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)
55 # Multilib support variables.
56 MULTISRCTOP =
57 MULTIBUILDTOP =
58 MULTIDIRS =
59 MULTISUBDIR =
60 MULTIDO = true
61 MULTICLEAN = true
63 # Not configured per top-level version, since that doesn't get passed
64 # down at configure time, but overrridden by the top-level install
65 # target.
66 INSTALL = @INSTALL@
67 INSTALL_PROGRAM = @INSTALL_PROGRAM@
68 INSTALL_DATA = @INSTALL_DATA@
70 AR = @AR@
71 AR_FLAGS = rc
73 RANLIB = @RANLIB@
75 CC = @CC@
76 CFLAGS = @CFLAGS@
77 WARN_CFLAGS = -W -Wall -Wwrite-strings -Wstrict-prototypes
78 ALL_CFLAGS = -I. -I$(srcdir) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(WARN_CFLAGS) \
79 -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing -fexceptions
81 # Libtool
82 # The following strings describe the version of the obj-C library
83 # begin compiled and compatibility issues.
84 # Please refer to Libtool documentation about how to manage these
85 # numbers.
86 LIBOBJC_VERSION = @VERSION@
87 LIBOBJC_GC_VERSION = @VERSION@
88 LIBTOOL = @LIBTOOL@ $(LIBTOOLFLAGS)
89 LIBTOOL_COMPILE = $(LIBTOOL) --mode=compile
90 LIBTOOL_LINK = $(LIBTOOL) --mode=link
91 LIBTOOL_INSTALL = $(LIBTOOL) --mode=install
92 LIBTOOL_CLEAN = $(LIBTOOL) --mode=clean
93 #LIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall
95 OBJC_GCFLAGS=-DOBJC_WITH_GC=1
96 OBJC_BOEHM_GC=@OBJC_BOEHM_GC@
97 OBJC_BOEHM_GC_INCLUDES=@OBJC_BOEHM_GC_INCLUDES@
98 OBJC_BOEHM_GC_LIBS=../boehm-gc/libgcjgc_convenience.la $(thread_libs_and_flags)
100 INCLUDES = -I$(srcdir)/$(MULTISRCTOP)../gcc \
101 -I$(srcdir)/$(MULTISRCTOP)../gcc/config \
102 -I$(MULTIBUILDTOP)../../$(host_subdir)/gcc \
103 -I$(srcdir)/$(MULTISRCTOP)../include \
104 $(OBJC_BOEHM_GC_INCLUDES)
107 ## The list of header/source files
110 # User-visible header files, from the objc/ directory
111 OBJC_H = \
112 objc.h \
113 objc-exception.h \
114 objc-sync.h \
116 NXConstStr.h \
117 Object.h \
118 Protocol.h \
119 encoding.h \
120 message.h \
121 objc-api.h \
122 objc-decls.h \
123 runtime.h \
124 thr.h \
126 hash.h \
127 objc-list.h \
128 sarray.h \
129 typedstream.h
131 # User-visible header files containing deprecated APIs, from the
132 # objc/deprecated directory
133 OBJC_DEPRECATED_H = \
134 METHOD_NULL.h \
135 MetaClass.h \
136 Object.h \
137 STR.h \
138 hash.h \
139 objc-list.h \
140 objc_error.h \
141 objc_get_uninstalled_dtable.h \
142 objc_malloc.h \
143 objc_object_alloc.h \
144 objc_unexpected_exception.h \
145 objc_valloc.h \
146 sarray.h \
147 struct_objc_category.h \
148 struct_objc_class.h \
149 struct_objc_ivar.h \
150 struct_objc_ivar_list.h \
151 struct_objc_method.h \
152 struct_objc_method_list.h \
153 struct_objc_module.h \
154 struct_objc_protocol.h \
155 struct_objc_protocol_list.h \
156 struct_objc_selector.h \
157 struct_objc_static_instances.h \
158 struct_objc_symtab.h \
159 typedstream.h
161 # Objective-C source files to compile
162 OBJC_SOURCE_FILES = \
163 NXConstStr.m \
164 Object.m \
165 Protocol.m \
166 accessors.m \
167 linking.m
169 # C source files to compile
170 C_SOURCE_FILES = \
171 archive.c \
172 class.c \
173 encoding.c \
174 error.c \
175 gc.c \
176 hash.c \
177 init.c \
178 ivars.c \
179 memory.c \
180 methods.c \
181 nil_method.c \
182 objc-foreach.c \
183 objc-sync.c \
184 objects.c \
185 protocols.c \
186 sarray.c \
187 selector.c \
188 sendmsg.c \
189 thr.c \
190 exception.c
192 # Object files to link (when the library is linked with no GC (Garbage Collection))
193 OBJS = \
194 $(patsubst %.m,%.lo,$(OBJC_SOURCE_FILES)) \
195 $(patsubst %.c,%.lo,$(C_SOURCE_FILES))
197 # Object files to link (when the library is linked with GC (Garbage Collection))
198 OBJS_GC = \
199 $(patsubst %.m,%_gc.lo,$(OBJC_SOURCE_FILES)) \
200 $(patsubst %.c,%_gc.lo,$(C_SOURCE_FILES))
204 ## The rules to build
207 # Flags to pass to a recursive make.
208 FLAGS_TO_PASS = \
209 "AR=$(AR)" \
210 "AR_FLAGS=$(AR_FLAGS)" \
211 "CC=$(CC)" \
212 "CFLAGS=$(CFLAGS)" \
213 "DESTDIR=$(DESTDIR)" \
214 "LIBCFLAGS=$(LIBCFLAGS)" \
215 "EXTRA_OFILES=$(EXTRA_OFILES)" \
216 "HDEFINES=$(HDEFINES)" \
217 "INSTALL=$(INSTALL)" \
218 "INSTALL_DATA=$(INSTALL_DATA)" \
219 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
220 "LDFLAGS=$(LDFLAGS)" \
221 "LIBTOOL=$(LIBTOOL)" \
222 "LOADLIBES=$(LOADLIBES)" \
223 "PICFLAG=$(PICFLAG)" \
224 "RANLIB=$(RANLIB)" \
225 "SHELL=$(SHELL)" \
226 "prefix=$(prefix)" \
227 "exec_prefix=$(exec_prefix)" \
228 "libdir=$(libdir)" \
229 "libsubdir=$(libsubdir)" \
230 "tooldir=$(tooldir)"
232 # The 'all' rule must be the first one so that it is executed if
233 # nothing is specified on the command-line.
234 all: libobjc$(libsuffix).la $(OBJC_BOEHM_GC)
235 : $(MAKE) ; exec $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
237 .SUFFIXES:
238 .SUFFIXES: .c .m .lo
240 %.lo: %.c
241 $(LIBTOOL_COMPILE) $(CC) $< -c \
242 $(ALL_CFLAGS) $(INCLUDES) \
243 -o $@
245 %_gc.lo: %.c
246 $(LIBTOOL_COMPILE) $(CC) $< -c \
247 $(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) \
248 -o $@
250 %.lo: %.m
251 $(LIBTOOL_COMPILE) $(CC) $< -c \
252 $(ALL_CFLAGS) $(INCLUDES) -fgnu-runtime \
253 -o $@
255 %_gc.lo: %.m
256 $(LIBTOOL_COMPILE) $(CC) $< -c \
257 $(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) -fgnu-runtime \
258 -o $@
260 # sendmsg has a special rule because it depends on runtime-info.h.
261 runtime-info.h:
262 echo "" > tmp-runtime.m
263 echo "/* This file is automatically generated */" > $@
264 $(CC) $(MULTIFLAGS) -print-objc-runtime-info -S tmp-runtime.m >> $@
265 rm -f tmp-runtime.m tmp-runtime.s
267 sendmsg.lo: sendmsg.c runtime-info.h
268 $(LIBTOOL_COMPILE) $(CC) $< -c \
269 $(ALL_CFLAGS) $(INCLUDES) \
270 -o $@
272 sendmsg_gc.lo: sendmsg.c runtime-info.h
273 $(LIBTOOL_COMPILE) $(CC) $< -c \
274 $(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) \
275 -o $@
277 # These files have separate rules because they require special
278 # compiler flags.
279 archive.lo: archive.c
280 $(LIBTOOL_COMPILE) $(CC) $< -c \
281 $(ALL_CFLAGS) $(INCLUDES) -Wno-deprecated-declarations \
282 -o $@
284 archive_gc.lo: archive.c
285 $(LIBTOOL_COMPILE) $(CC) $< -c \
286 $(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) -Wno-deprecated-declarations \
287 -o $@
289 # -Wno-deprecated-declarations is for the objc/typedstream.h functions.
290 Object.lo: Object.m
291 $(LIBTOOL_COMPILE) $(CC) $< -c \
292 $(ALL_CFLAGS) $(INCLUDES) -fgnu-runtime -Wno-deprecated-declarations \
293 -o $@
295 # -Wno-deprecated-declarations is for the objc/typedstream.h functions.
296 Object_gc.lo: Object.m
297 $(LIBTOOL_COMPILE) $(CC) $< -c \
298 $(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) -fgnu-runtime -Wno-deprecated-declarations \
299 -o $@
301 # -Wno-deprecated-declarations is to silence warnings from using
302 # _objc_unexpected_exception.
303 exception.lo: exception.c
304 $(LIBTOOL_COMPILE) $(CC) $< -c \
305 $(ALL_CFLAGS) $(INCLUDES) -fexceptions -Wno-deprecated-declarations \
306 -o $@
308 exception_gc.lo: exception.c
309 $(LIBTOOL_COMPILE) $(CC) $< -c \
310 $(ALL_CFLAGS) $(INCLUDES) $(OBJC_GCFLAGS) -fexceptions -Wno-deprecated-declarations \
311 -o $@
313 doc: info dvi pdf html
315 # No install-html or install-pdf support
316 .PHONY: install-html install-pdf install-info
317 install-html:
318 install-pdf:
319 install-info:
321 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
323 libobjc$(libsuffix).la: $(OBJS)
324 $(LIBTOOL_LINK) $(CC) -o $@ $(OBJS) \
325 -rpath $(toolexeclibdir) \
326 -version-info $(LIBOBJC_VERSION) $(extra_ldflags_libobjc) \
327 $(LTLDFLAGS)
329 libobjc_gc$(libsuffix).la: $(OBJS_GC)
330 $(LIBTOOL_LINK) $(CC) -o $@ $(OBJS_GC) $(OBJC_BOEHM_GC_LIBS) \
331 -rpath $(toolexeclibdir) \
332 -version-info $(LIBOBJC_GC_VERSION) $(extra_ldflags_libobjc) \
333 $(LTLDFLAGS)
335 info:
336 dvi:
337 pdf:
338 html:
340 Makefile: Makefile.in config.status
341 $(SHELL) config.status
343 config.status: configure
344 rm -f config.cache
345 CONFIG_SITE=no-such-file CC='$(CC)' AR='$(AR)' CFLAGS='$(CFLAGS)' \
346 CPPFLAGS='$(CPPFLAGS)' $(SHELL) config.status --recheck
348 AUTOCONF = autoconf
349 ACLOCAL = aclocal
350 ACLOCAL_AMFLAGS = -I ../config -I ..
351 aclocal_deps = \
352 $(srcdir)/../config/multi.m4 \
353 $(srcdir)/../config/override.m4 \
354 $(srcdir)/../config/proginstall.m4 \
355 $(srcdir)/../ltoptions.m4 \
356 $(srcdir)/../ltsugar.m4 \
357 $(srcdir)/../ltversion.m4 \
358 $(srcdir)/../lt~obsolete.m4 \
359 $(srcdir)/acinclude.m4
361 $(srcdir)/configure: @MAINT@ configure.ac $(srcdir)/aclocal.m4
362 rm -f config.cache
363 cd $(srcdir) && $(AUTOCONF)
365 $(srcdir)/aclocal.m4: @MAINT@ $(aclocal_deps)
366 cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
368 install: install-libs install-headers
370 install-libs: installdirs
371 $(SHELL) $(multi_basedir)/mkinstalldirs $(DESTDIR)$(toolexeclibdir)
372 $(LIBTOOL_INSTALL) $(INSTALL) libobjc$(libsuffix).la $(DESTDIR)$(toolexeclibdir);
373 if [ "$(OBJC_BOEHM_GC)" ]; then \
374 $(LIBTOOL_INSTALL) $(INSTALL) libobjc_gc$(libsuffix).la \
375 $(DESTDIR)$(toolexeclibdir);\
377 $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"
378 @-$(LIBTOOL) --mode=finish $(DESTDIR)$(toolexeclibdir)
380 # Copy Objective-C headers to installation include directory.
381 install-headers:
382 $(SHELL) $(multi_basedir)/mkinstalldirs $(DESTDIR)$(libsubdir)/$(includedirname)/objc
383 for file in $(OBJC_H); do \
384 realfile=$(srcdir)/objc/$${file}; \
385 $(INSTALL_DATA) $${realfile} $(DESTDIR)$(libsubdir)/$(includedirname)/objc; \
386 done
387 $(multi_basedir)/mkinstalldirs $(DESTDIR)$(libsubdir)/$(includedirname)/objc/deprecated
388 for file in $(OBJC_DEPRECATED_H); do \
389 realfile=$(srcdir)/objc/deprecated/$${file}; \
390 $(INSTALL_DATA) $${realfile} $(DESTDIR)$(libsubdir)/$(includedirname)/objc/deprecated; \
391 done
393 check uninstall install-strip dist installcheck installdirs:
395 mostlyclean:
396 -$(LIBTOOL_CLEAN) rm -f libobjc$(libsuffix).la libobjc_gc$(libsuffix).la *.lo
397 -rm -f runtime-info.h tmp-runtime.s *.o *.lo libobjc* xforward \
398 fflags *.aux *.cp *.dvi *.pdf *.fn *.info *.ky *.log *.pg \
399 *.toc *.tp *.vr *.html libobj.exp
400 @$(MULTICLEAN) multi-clean DO=mostlyclean
402 clean: mostlyclean
403 rm -f config.log
404 @$(MULTICLEAN) multi-clean DO=clean
406 distclean: clean
407 @$(MULTICLEAN) multi-clean DO=distclean
408 rm -f config.cache config.status Makefile configure
410 maintainer-clean realclean: distclean
412 .PHONY: mostlyclean clean distclean maintainer-clean all check uninstall \
413 install-strip dist installcheck installdirs
415 # Don't export variables to the environment, in order to not confuse
416 # configure.
417 .NOEXPORT: