]> gcc.gnu.org Git - gcc.git/blame - libobjc/Makefile.in
alias.c (init_alias_analysis): Use ggc_calloc instead of xrealloc.
[gcc.git] / libobjc / Makefile.in
CommitLineData
05dcec66 1# Makefile for GNU Objective C runtime library.
9c01f395 2# Copyright 1993, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004
05dcec66 3# Free Software Foundation, Inc.
bce1b489 4
6c82ad25 5#This file is part of GCC.
bce1b489 6
6c82ad25 7#GCC is free software; you can redistribute it and/or modify
bce1b489
BE
8#it under the terms of the GNU General Public License as published by
9#the Free Software Foundation; either version 2, or (at your option)
10#any later version.
11
6c82ad25 12#GCC is distributed in the hope that it will be useful,
bce1b489
BE
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.
16
17#You should have received a copy of the GNU General Public License
6c82ad25 18#along with GCC; see the file COPYING. If not, write to
5f38fdda
JL
19#the Free Software Foundation, 59 Temple Place - Suite 330,
20#Boston, MA 02111-1307, USA. */
bce1b489
BE
21
22#This was cribbed from the libchill, libiberty and libstdc++
23#Makefile.in files. Some of this stuff may be unnecessary and
24#worthless.
25
9aa338ec 26SHELL = @SHELL@
b150efee 27MAKEOVERRIDES=
bce1b489
BE
28
29#### Start of system configuration section. ####
30
b150efee
FS
31srcdir = @glibcpp_srcdir@
32VPATH = @glibcpp_srcdir@
bce1b489
BE
33prefix = @prefix@
34exec_prefix = @exec_prefix@
9c01f395 35target_noncanonical = @target_noncanonical@
bce1b489 36gcc_version = @gcc_version@
b150efee
FS
37top_srcdir = @top_srcdir@
38toplevel_srcdir = @toplevel_srcdir@
eb01299a 39toolexecdir = @toolexecdir@
a42a57cb 40# Toolexecdir is used only by toolexeclibdir
608e1e0c 41toolexeclibdir = @toolexeclibdir@
b150efee
FS
42
43top_builddir = .
bce1b489
BE
44
45libdir = $(exec_prefix)/lib
9c01f395 46libsubdir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)
bce1b489
BE
47
48# Multilib support variables.
49MULTISRCTOP =
50MULTIBUILDTOP =
51MULTIDIRS =
52MULTISUBDIR =
53MULTIDO = true
54MULTICLEAN = true
55
56# Not configured per top-level version, since that doesn't get passed
57# down at configure time, but overrridden by the top-level install
58# target.
59INSTALL = @INSTALL@
60INSTALL_PROGRAM = @INSTALL_PROGRAM@
61INSTALL_DATA = @INSTALL_DATA@
62
63AR = @AR@
64AR_FLAGS = rc
65
66RANLIB = @RANLIB@
67
68CC = @CC@
69CFLAGS = @CFLAGS@
9aa338ec 70WARN_CFLAGS = -W -Wall -Wwrite-strings -Wstrict-prototypes
15794a95 71GTHREAD_FLAGS=@GTHREAD_FLAGS@
9aa338ec 72ALL_CFLAGS = -I. -I$(srcdir) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(WARN_CFLAGS) \
8f8cdf33 73 $(GTHREAD_FLAGS) -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing
bce1b489 74
c161c99b
NP
75# Libtool
76# The following strings describe the version of the obj-C library
77# begin compiled and compatibility issues.
78# Please refer to Libtool documentation about how to manage these
79# numbers.
68a1af87
MH
80LIBOBJC_VERSION = @VERSION@
81LIBOBJC_GC_VERSION = @VERSION@
c161c99b
NP
82# @LIBTOOL@ does not get it right, so we hack it in - FIXME
83LIBTOOL = ./libtool
84LIBTOOL_COMPILE = $(LIBTOOL) --mode=compile
85LIBTOOL_LINK = $(LIBTOOL) --mode=link
86LIBTOOL_INSTALL = $(LIBTOOL) --mode=install
87LIBTOOL_CLEAN = $(LIBTOOL) --mode=clean
88#LIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall
89
5e2f657b 90INCLUDES = -I$(srcdir)/objc -I$(srcdir)/$(MULTISRCTOP)../gcc \
84beab38
KG
91 -I$(srcdir)/$(MULTISRCTOP)../gcc/config -I$(MULTIBUILDTOP)../../gcc \
92 -I$(srcdir)/$(MULTISRCTOP)../include
bce1b489
BE
93
94OBJC_GCFLAGS=-DOBJC_WITH_GC=1
15794a95 95OBJC_THREAD_FILE=thr-objc
c161c99b 96OBJC_BOEHM_GC=@OBJC_BOEHM_GC@
bce1b489
BE
97
98.SUFFIXES:
c161c99b 99.SUFFIXES: .c .m .lo
bce1b489 100
c161c99b
NP
101.c.lo:
102 $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) $(INCLUDES) $<
bce1b489 103
c161c99b
NP
104.m.lo:
105 $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) $(INCLUDES) $<
bce1b489 106
4102f627
RL
107# Flags to pass to a recursive make.
108FLAGS_TO_PASS = \
109 "AR=$(AR)" \
110 "AR_FLAGS=$(AR_FLAGS)" \
111 "CC=$(CC)" \
112 "CFLAGS=$(CFLAGS)" \
90e5b39f 113 "DESTDIR=$(DESTDIR)" \
4102f627
RL
114 "LIBCFLAGS=$(LIBCFLAGS)" \
115 "EXTRA_OFILES=$(EXTRA_OFILES)" \
116 "HDEFINES=$(HDEFINES)" \
117 "INSTALL=$(INSTALL)" \
118 "INSTALL_DATA=$(INSTALL_DATA)" \
119 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
120 "LDFLAGS=$(LDFLAGS)" \
c161c99b 121 "LIBTOOL=$(LIBTOOL)" \
4102f627
RL
122 "LOADLIBES=$(LOADLIBES)" \
123 "PICFLAG=$(PICFLAG)" \
124 "RANLIB=$(RANLIB)" \
76632dd0
DJ
125 "SHELL=$(SHELL)" \
126 "prefix=$(prefix)" \
127 "exec_prefix=$(exec_prefix)" \
128 "libdir=$(libdir)" \
129 "libsubdir=$(libsubdir)" \
130 "tooldir=$(tooldir)"
4102f627 131
c161c99b 132all: libobjc.la $(OBJC_BOEHM_GC)
6c5d742e 133 : $(MAKE) ; exec $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
bce1b489
BE
134
135# User-visible header files.
136
137OBJC_H = hash.h objc-list.h sarray.h objc.h objc-api.h \
138 NXConstStr.h Object.h Protocol.h encoding.h typedstream.h \
139 thr.h
140
141# Modules that comprise the runtime library.
142
c161c99b
NP
143OBJS = archive.lo class.lo encoding.lo gc.lo hash.lo init.lo linking.lo \
144 misc.lo nil_method.lo NXConstStr.lo Object.lo objects.lo \
145 Protocol.lo sarray.lo selector.lo sendmsg.lo thr.lo \
146 $(OBJC_THREAD_FILE).lo
bce1b489 147
c161c99b
NP
148OBJS_GC = archive_gc.lo class_gc.lo encoding_gc.lo gc_gc.lo hash_gc.lo \
149 init_gc.lo linking_gc.lo misc_gc.lo nil_method_gc.lo \
150 NXConstStr_gc.lo Object_gc.lo objects_gc.lo Protocol_gc.lo \
151 sarray_gc.lo selector_gc.lo sendmsg_gc.lo thr_gc.lo \
152 $(OBJC_THREAD_FILE)_gc.lo
bce1b489 153
7af06410 154runtime-info.h:
54b98a47 155 echo "" > tmp-runtime.m
c161c99b 156 echo "/* This file is automatically generated */" > $@
7989e4dc 157 $(CC) $(MULTIFLAGS) -print-objc-runtime-info -S tmp-runtime.m >> $@
54b98a47 158 rm -f tmp-runtime.m tmp-runtime.s
bce1b489 159
c161c99b
NP
160archive_gc.lo: archive.c
161 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
162 $(INCLUDES) $<
bce1b489 163
c161c99b
NP
164class_gc.lo: class.c
165 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
166 $(INCLUDES) $<
bce1b489 167
c161c99b
NP
168encoding_gc.lo: encoding.c
169 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
170 $(INCLUDES) $<
bce1b489 171
c161c99b
NP
172gc.lo: gc.c
173 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(INCLUDES) $<
bce1b489 174
c161c99b
NP
175gc_gc.lo: gc.c
176 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
177 $(INCLUDES) $<
bce1b489 178
c161c99b
NP
179hash_gc.lo: hash.c
180 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
181 $(INCLUDES) $<
bce1b489 182
c161c99b
NP
183init_gc.lo: init.c
184 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
185 $(INCLUDES) $<
bce1b489 186
c161c99b
NP
187linking.lo: linking.m
188 $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
189 $(INCLUDES) $<
bce1b489 190
c161c99b
NP
191linking_gc.lo: linking.m
192 $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
193 $(OBJC_GCFLAGS) $(INCLUDES) $<
bce1b489 194
c161c99b
NP
195misc_gc.lo: misc.c
196 $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) -o $@ $(OBJC_GCFLAGS) \
197 $(INCLUDES) $<
bce1b489 198
c161c99b
NP
199nil_method_gc.lo: nil_method.c
200 $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) -o $@ $(OBJC_GCFLAGS) \
201 $(INCLUDES) $<
bce1b489 202
c161c99b
NP
203NXConstStr.lo: NXConstStr.m
204 $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
205 $(INCLUDES) $<
bce1b489 206
c161c99b
NP
207NXConstStr_gc.lo: NXConstStr.m
208 $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
209 $(OBJC_GCFLAGS) $(INCLUDES) $<
bce1b489 210
c161c99b
NP
211Object.lo: Object.m
212 $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
213 $(INCLUDES) $<
bce1b489 214
c161c99b
NP
215Object_gc.lo: Object.m
216 $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
217 $(OBJC_GCFLAGS) $(INCLUDES) $<
bce1b489 218
c161c99b
NP
219objects_gc.lo: objects.c
220 $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) -o $@ $(OBJC_GCFLAGS) \
221 $(INCLUDES) $<
bce1b489 222
c161c99b
NP
223Protocol.lo: Protocol.m
224 $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
225 $(INCLUDES) $<
bce1b489 226
c161c99b
NP
227Protocol_gc.lo: Protocol.m
228 $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
229 $(OBJC_GCFLAGS) $(INCLUDES) $<
bce1b489 230
c161c99b
NP
231sarray_gc.lo: sarray.c
232 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
233 $(INCLUDES) $<
bce1b489 234
c161c99b
NP
235selector_gc.lo: selector.c
236 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
237 $(INCLUDES) $<
bce1b489 238
c161c99b
NP
239sendmsg.lo: sendmsg.c runtime-info.h
240 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(INCLUDES) $<
bce1b489 241
c161c99b
NP
242sendmsg_gc.lo: sendmsg.c runtime-info.h
243 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
244 $(INCLUDES) $<
bce1b489 245
c161c99b
NP
246thr_gc.lo: thr.c
247 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
248 $(INCLUDES) $<
bce1b489 249
c161c99b
NP
250$(OBJC_THREAD_FILE)_gc.lo: $(OBJC_THREAD_FILE).c
251 $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
252 $(INCLUDES) $<
bce1b489
BE
253
254doc: info dvi html
255
c161c99b 256libobjc.la: $(OBJS)
b150efee 257 $(LIBTOOL_LINK) $(CC) -o $@ $(OBJS) \
608e1e0c 258 -rpath $(toolexeclibdir) \
c161c99b 259 -version-info $(LIBOBJC_VERSION)
bce1b489 260
c161c99b 261libobjc_gc.la: $(OBJS_GC)
b150efee 262 $(LIBTOOL_LINK) $(CC) -o $@ $(OBJS_GC) \
608e1e0c 263 -rpath $(toolexeclibdir) \
c161c99b 264 -version-info $(LIBOBJC_GC_VERSION)
bce1b489 265
c161c99b
NP
266#
267# FIXME -- The following part does not fit in the libtool context.
268# Libtool is supposed to [going to] be able to create a win 32 DLL
269# without extra code but since I don't have a win machine to test
270# if it already works, I leave the old code here.
271#
272libobjc_s.a: libobjc.la
bce1b489
BE
273 mv libobjc.a libobjc_s.a
274
275# Create a relocatable DLL
276libobjc.dll: libobjc_s.a libobjc_entry.o
277 $(CC) -mdll -Wl,--base-file -Wl,libobjc.base \
278 -o libobjc.dll libobjc_s.a libobjc_entry.o -lkernel32
279 $(DLLTOOL) --dllname libobjc.dll --def $(srcdir)/libobjc.def \
280 --base-file libobjc.base --output-exp libobjc.exp
281 $(GCC_FOR_TARGET) -mdll -Wl,--base-file libobjc.base libobjc.exp \
282 -o libobjc.dll libobjc_s.a libobjc_entry.o -lkernel32
283 $(DLLTOOL) --dllname libobjc.dll --def $(srcdir)/libobjc.def \
284 --base-file libobjc.base --output-exp libobjc.exp
285 $(GCC_FOR_TARGET) libobjc.exp -mdll \
286 -o libobjc.dll libobjc_s.a libobjc_entry.o -lkernel32
287 $(DLLTOOL) --dllname libobjc.dll --def $(srcdir)/libobjc.def \
288 --output-lib libobjc.a
c161c99b
NP
289#
290#
291#
292#
293#
bce1b489 294
10c179f3
JM
295info:
296dvi:
297html:
bce1b489
BE
298
299Makefile: Makefile.in config.status
300 $(SHELL) config.status
301
302config.status: configure
303 rm -f config.cache
304 CONFIG_SITE=no-such-file CC='$(CC)' AR='$(AR)' CFLAGS='$(CFLAGS)' \
305 CPPFLAGS='$(CPPFLAGS)' $(SHELL) config.status --recheck
306
3adc31d1 307${srcdir}/configure: configure.ac
bce1b489
BE
308 rm -f config.cache
309 cd ${srcdir} && autoconf
310
b150efee 311install: install-libs install-headers
bce1b489
BE
312
313install-libs: installdirs
608e1e0c
NN
314 $(SHELL) $(toplevel_srcdir)/mkinstalldirs $(DESTDIR)$(toolexeclibdir)
315 $(LIBTOOL_INSTALL) $(INSTALL) libobjc.la $(DESTDIR)$(toolexeclibdir);
c161c99b 316 if [ "$(OBJC_BOEHM_GC)" ]; then \
b150efee 317 $(LIBTOOL_INSTALL) $(INSTALL) libobjc_gc.la \
608e1e0c 318 $(DESTDIR)$(toolexeclibdir);\
c161c99b 319 fi
b150efee 320 $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"
608e1e0c 321 @-$(LIBTOOL) --mode=finish $(DESTDIR)$(toolexeclibdir)
bce1b489
BE
322
323# Copy Objective C headers to installation include directory.
b150efee 324install-headers:
90e5b39f 325 $(SHELL) $(toplevel_srcdir)/mkinstalldirs $(DESTDIR)$(libsubdir)/include/objc
bce1b489 326 for file in $(OBJC_H); do \
789eb4f5 327 realfile=$(srcdir)/objc/$${file}; \
90e5b39f 328 $(INSTALL_DATA) $${realfile} $(DESTDIR)$(libsubdir)/include/objc; \
bce1b489
BE
329 done
330
331check uninstall install-strip dist installcheck installdirs:
332
333mostlyclean:
c161c99b
NP
334 -$(LIBTOOL_CLEAN) rm -f libobjc.la libobjc_gc.la *.lo
335 -rm -f runtime-info.h tmp-runtime.s *.o *.lo libobjc* xforward \
bce1b489
BE
336 fflags *.aux *.cp *.dvi *.fn *.info *.ky *.log *.pg \
337 *.toc *.tp *.vr *.html libobj.exp
338 @$(MULTICLEAN) multi-clean DO=mostlyclean
339
340clean: mostlyclean
341 rm -f config.log
342 @$(MULTICLEAN) multi-clean DO=clean
343
344distclean: clean
345 @$(MULTICLEAN) multi-clean DO=distclean
346 rm -f config.cache config.status Makefile configure
347
348maintainer-clean realclean: distclean
349
350.PHONY: mostlyclean clean distclean maintainer-clean all check uninstall \
351 install-strip dist installcheck installdirs
This page took 0.444458 seconds and 5 git commands to generate.