OSDN Git Service

* configure.ac: Restore toolexecdir.
[pf3gnuchains/gcc-fork.git] / libobjc / Makefile.in
1 # Makefile for GNU Objective C runtime library.
2 # Copyright 1993, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004
3 # Free Software Foundation, Inc.
4
5 #This file is part of GCC.
6
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 2, or (at your option)
10 #any later version.
11
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.
16
17 #You should have received a copy of the GNU General Public License
18 #along with GCC; see the file COPYING.  If not, write to
19 #the Free Software Foundation, 59 Temple Place - Suite 330,
20 #Boston, MA 02111-1307, USA.  */
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
26 SHELL = @SHELL@
27 MAKEOVERRIDES=
28
29 #### Start of system configuration section. ####
30
31 srcdir = @glibcpp_srcdir@
32 VPATH = @glibcpp_srcdir@
33 prefix = @prefix@
34 exec_prefix = @exec_prefix@
35 target_noncanonical = @target_noncanonical@
36 gcc_version = @gcc_version@
37 top_srcdir = @top_srcdir@
38 toplevel_srcdir = @toplevel_srcdir@
39 toolexecdir = @toolexecdir@ 
40 # Toolexecdir is used only by toolexeclibdir
41 toolexeclibdir = @toolexeclibdir@
42
43 top_builddir = .
44
45 libdir = $(exec_prefix)/lib
46 libsubdir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)
47
48 # Multilib support variables.
49 MULTISRCTOP =
50 MULTIBUILDTOP =
51 MULTIDIRS =
52 MULTISUBDIR =
53 MULTIDO = true
54 MULTICLEAN = 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.
59 INSTALL = @INSTALL@
60 INSTALL_PROGRAM = @INSTALL_PROGRAM@
61 INSTALL_DATA = @INSTALL_DATA@
62
63 AR = @AR@
64 AR_FLAGS = rc
65
66 RANLIB = @RANLIB@
67
68 CC = @CC@
69 CFLAGS = @CFLAGS@
70 WARN_CFLAGS = -W -Wall -Wwrite-strings -Wstrict-prototypes
71 GTHREAD_FLAGS=@GTHREAD_FLAGS@
72 ALL_CFLAGS = -I. -I$(srcdir) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(WARN_CFLAGS) \
73         $(GTHREAD_FLAGS) -DIN_GCC -DIN_TARGET_LIBS -fno-strict-aliasing
74
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.
80 LIBOBJC_VERSION = @VERSION@
81 LIBOBJC_GC_VERSION = @VERSION@
82 # @LIBTOOL@ does not get it right, so we hack it in - FIXME
83 LIBTOOL = ./libtool
84 LIBTOOL_COMPILE = $(LIBTOOL) --mode=compile
85 LIBTOOL_LINK    = $(LIBTOOL) --mode=link 
86 LIBTOOL_INSTALL = $(LIBTOOL) --mode=install
87 LIBTOOL_CLEAN   = $(LIBTOOL) --mode=clean
88 #LIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall
89
90 INCLUDES = -I$(srcdir)/objc  -I$(srcdir)/$(MULTISRCTOP)../gcc \
91   -I$(srcdir)/$(MULTISRCTOP)../gcc/config -I$(MULTIBUILDTOP)../../gcc \
92   -I$(srcdir)/$(MULTISRCTOP)../include
93
94 OBJC_GCFLAGS=-DOBJC_WITH_GC=1
95 OBJC_THREAD_FILE=thr-objc
96 OBJC_BOEHM_GC=@OBJC_BOEHM_GC@
97
98 .SUFFIXES:
99 .SUFFIXES: .c .m .lo
100
101 .c.lo:
102         $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) $(INCLUDES) $<
103
104 .m.lo:
105         $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) $(INCLUDES) $<
106
107 # Flags to pass to a recursive make.
108 FLAGS_TO_PASS = \
109         "AR=$(AR)" \
110         "AR_FLAGS=$(AR_FLAGS)" \
111         "CC=$(CC)" \
112         "CFLAGS=$(CFLAGS)" \
113         "DESTDIR=$(DESTDIR)" \
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)" \
121         "LIBTOOL=$(LIBTOOL)" \
122         "LOADLIBES=$(LOADLIBES)" \
123         "PICFLAG=$(PICFLAG)" \
124         "RANLIB=$(RANLIB)" \
125         "SHELL=$(SHELL)" \
126         "prefix=$(prefix)" \
127         "exec_prefix=$(exec_prefix)" \
128         "libdir=$(libdir)" \
129         "libsubdir=$(libsubdir)" \
130         "tooldir=$(tooldir)"
131
132 all: libobjc.la $(OBJC_BOEHM_GC)
133         : $(MAKE) ; exec $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
134
135 # User-visible header files.
136
137 OBJC_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
143 OBJS =    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
147
148 OBJS_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
153
154 runtime-info.h: 
155         echo "" > tmp-runtime.m
156         echo "/* This file is automatically generated */" > $@
157         $(CC) $(MULTIFLAGS) -print-objc-runtime-info -S tmp-runtime.m >> $@
158         rm -f tmp-runtime.m tmp-runtime.s
159
160 archive_gc.lo: archive.c
161         $(LIBTOOL_COMPILE) $(CC) -c  -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
162                 $(INCLUDES) $<
163
164 class_gc.lo: class.c
165         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
166                 $(INCLUDES) $<
167
168 encoding_gc.lo: encoding.c
169         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
170                 $(INCLUDES) $<
171
172 gc.lo: gc.c
173         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(INCLUDES) $<
174
175 gc_gc.lo: gc.c
176         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
177                 $(INCLUDES) $<
178
179 hash_gc.lo: hash.c
180         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
181                 $(INCLUDES) $<
182
183 init_gc.lo: init.c
184         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
185                 $(INCLUDES) $<
186
187 linking.lo: linking.m
188         $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
189                 $(INCLUDES) $<
190
191 linking_gc.lo: linking.m
192         $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
193                 $(OBJC_GCFLAGS) $(INCLUDES) $<
194
195 misc_gc.lo: misc.c
196         $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) -o $@ $(OBJC_GCFLAGS) \
197                 $(INCLUDES) $<
198
199 nil_method_gc.lo: nil_method.c
200         $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) -o $@ $(OBJC_GCFLAGS) \
201                 $(INCLUDES) $<
202
203 NXConstStr.lo: NXConstStr.m
204         $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
205                 $(INCLUDES) $<
206
207 NXConstStr_gc.lo: NXConstStr.m
208         $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
209                 $(OBJC_GCFLAGS) $(INCLUDES) $<
210
211 Object.lo: Object.m
212         $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
213                 $(INCLUDES) $<
214
215 Object_gc.lo: Object.m
216         $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
217                 $(OBJC_GCFLAGS) $(INCLUDES) $<
218
219 objects_gc.lo: objects.c
220         $(LIBTOOL_COMPILE) $(CC) -c $(ALL_CFLAGS) -o $@ $(OBJC_GCFLAGS) \
221                 $(INCLUDES) $<
222
223 Protocol.lo: Protocol.m
224         $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
225                 $(INCLUDES) $<
226
227 Protocol_gc.lo: Protocol.m
228         $(LIBTOOL_COMPILE) $(CC) -fgnu-runtime -c -o $@ $(ALL_CFLAGS) \
229                 $(OBJC_GCFLAGS) $(INCLUDES) $<
230
231 sarray_gc.lo: sarray.c
232         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
233                 $(INCLUDES) $<
234
235 selector_gc.lo: selector.c
236         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
237                 $(INCLUDES) $<
238
239 sendmsg.lo: sendmsg.c runtime-info.h
240         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(INCLUDES) $<
241
242 sendmsg_gc.lo: sendmsg.c runtime-info.h
243         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
244                 $(INCLUDES) $<
245
246 thr_gc.lo: thr.c
247         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
248                 $(INCLUDES) $<
249
250 $(OBJC_THREAD_FILE)_gc.lo: $(OBJC_THREAD_FILE).c
251         $(LIBTOOL_COMPILE) $(CC) -c -o $@ $(ALL_CFLAGS) $(OBJC_GCFLAGS) \
252                 $(INCLUDES) $<
253
254 doc: info dvi html
255
256 libobjc.la: $(OBJS)
257         $(LIBTOOL_LINK) $(CC) -o $@ $(OBJS) \
258                 -rpath $(toolexeclibdir) \
259                 -version-info $(LIBOBJC_VERSION)
260
261 libobjc_gc.la: $(OBJS_GC)
262         $(LIBTOOL_LINK) $(CC) -o $@ $(OBJS_GC) \
263                 -rpath $(toolexeclibdir) \
264                 -version-info $(LIBOBJC_GC_VERSION)
265
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 #
272 libobjc_s.a: libobjc.la
273         mv libobjc.a libobjc_s.a
274
275 # Create a relocatable DLL
276 libobjc.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
289 #
290 #
291 #
292 #
293 #
294
295 info:
296 dvi:
297 html:
298
299 Makefile: Makefile.in config.status
300         $(SHELL) config.status
301
302 config.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
307 ${srcdir}/configure: configure.ac
308         rm -f config.cache
309         cd ${srcdir} && autoconf
310
311 install: install-libs install-headers
312
313 install-libs: installdirs
314         $(SHELL) $(toplevel_srcdir)/mkinstalldirs $(DESTDIR)$(toolexeclibdir)
315         $(LIBTOOL_INSTALL) $(INSTALL) libobjc.la $(DESTDIR)$(toolexeclibdir);
316         if [ "$(OBJC_BOEHM_GC)" ]; then \
317           $(LIBTOOL_INSTALL) $(INSTALL) libobjc_gc.la \
318                                 $(DESTDIR)$(toolexeclibdir);\
319         fi
320         $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO="$@"
321         @-$(LIBTOOL) --mode=finish $(DESTDIR)$(toolexeclibdir)
322
323 # Copy Objective C headers to installation include directory.
324 install-headers:
325         $(SHELL) $(toplevel_srcdir)/mkinstalldirs $(DESTDIR)$(libsubdir)/include/objc
326         for file in $(OBJC_H); do \
327           realfile=$(srcdir)/objc/$${file}; \
328           $(INSTALL_DATA) $${realfile} $(DESTDIR)$(libsubdir)/include/objc; \
329         done
330
331 check uninstall install-strip dist installcheck installdirs:
332
333 mostlyclean:
334         -$(LIBTOOL_CLEAN) rm -f libobjc.la libobjc_gc.la *.lo
335         -rm -f runtime-info.h tmp-runtime.s *.o *.lo libobjc* xforward \
336                 fflags *.aux *.cp *.dvi *.fn *.info *.ky *.log *.pg \
337                 *.toc *.tp *.vr *.html libobj.exp
338         @$(MULTICLEAN) multi-clean DO=mostlyclean
339
340 clean: mostlyclean
341         rm -f config.log
342         @$(MULTICLEAN) multi-clean DO=clean
343
344 distclean: clean
345         @$(MULTICLEAN) multi-clean DO=distclean
346         rm -f config.cache config.status Makefile configure
347
348 maintainer-clean realclean: distclean
349
350 .PHONY: mostlyclean clean distclean maintainer-clean all check uninstall \
351         install-strip dist installcheck installdirs