merge from gcc
[deliverable/binutils-gdb.git] / libiberty / Makefile.in
1 #
2 # Makefile
3 # Copyright (C) 1990, 91-99, 2000, 2001
4 # Free Software Foundation
5 #
6 # This file is part of the libiberty library.
7 # Libiberty is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Library General Public
9 # License as published by the Free Software Foundation; either
10 # version 2 of the License, or (at your option) any later version.
11 #
12 # Libiberty 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 GNU
15 # Library General Public License for more details.
16 #
17 # You should have received a copy of the GNU Library General Public
18 # License along with libiberty; see the file COPYING.LIB. If not,
19 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 # Boston, MA 02111-1307, USA.
21 #
22
23 # This file was written by K. Richard Pixley <rich@cygnus.com>.
24
25 #
26 # Makefile for libiberty directory
27 #
28
29 srcdir = @srcdir@
30 VPATH = @srcdir@
31
32 prefix = @prefix@
33
34 exec_prefix = @exec_prefix@
35 bindir = @bindir@
36 libdir = @libdir@
37
38 SHELL = @SHELL@
39
40 # Multilib support variables.
41 MULTISRCTOP =
42 MULTIBUILDTOP =
43 MULTIDIRS =
44 MULTISUBDIR =
45 MULTIDO = true
46 MULTICLEAN = true
47
48 INSTALL = @INSTALL@
49 INSTALL_PROGRAM = @INSTALL_PROGRAM@
50 INSTALL_DATA = @INSTALL_DATA@
51
52 AR = @AR@
53 AR_FLAGS = rc
54
55 CC = @CC@
56 CFLAGS = @CFLAGS@
57 LIBCFLAGS = $(CFLAGS)
58 RANLIB = @RANLIB@
59 MAKEINFO = @MAKEINFO@
60 PERL = @PERL@
61
62 PICFLAG =
63
64 MAKEOVERRIDES =
65
66 TARGETLIB = libiberty.a
67
68 LIBOBJS = @LIBOBJS@
69
70 # A configuration can specify extra .o files that should be included,
71 # even if they are in libc. (Perhaps the libc version is buggy.)
72 EXTRA_OFILES =
73
74 # Flags to pass to a recursive make.
75 FLAGS_TO_PASS = \
76 "AR=$(AR)" \
77 "AR_FLAGS=$(AR_FLAGS)" \
78 "CC=$(CC)" \
79 "CFLAGS=$(CFLAGS)" \
80 "LIBCFLAGS=$(LIBCFLAGS)" \
81 "EXTRA_OFILES=$(EXTRA_OFILES)" \
82 "HDEFINES=$(HDEFINES)" \
83 "INSTALL=$(INSTALL)" \
84 "INSTALL_DATA=$(INSTALL_DATA)" \
85 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
86 "LDFLAGS=$(LDFLAGS)" \
87 "LOADLIBES=$(LOADLIBES)" \
88 "RANLIB=$(RANLIB)" \
89 "SHELL=$(SHELL)" \
90 "prefix=$(prefix)" \
91 "exec_prefix=$(exec_prefix)" \
92 "libdir=$(libdir)" \
93 "libsubdir=$(libsubdir)" \
94 "tooldir=$(tooldir)"
95
96 # Subdirectories to recurse into. We need to override this during cleaning
97 SUBDIRS = testsuite
98
99 # FIXME: add @BUILD_INFO@ once we're sure it works for everyone.
100 all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
101 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
102
103 .PHONY: check installcheck
104 check: check-subdir
105 installcheck: installcheck-subdir
106
107 @host_makefile_frag@
108
109 INCDIR=$(srcdir)/$(MULTISRCTOP)../include
110
111 COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
112 .c.o:
113 if [ x"$(PICFLAG)" != x ]; then \
114 $(COMPILE.c) $(PICFLAG) $< -o pic/$@; \
115 else true; fi
116 $(COMPILE.c) $<
117
118 # NOTE: If you add new files to the library, add them to this list
119 # (alphabetical), and add them to REQUIRED_OFILES or funcs in
120 # configure.in.
121 CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c \
122 bsearch.c bzero.c calloc.c choose-temp.c clock.c concat.c cplus-dem.c \
123 cp-demangle.c dyn-string.c fdmatch.c fnmatch.c ffs.c getcwd.c \
124 getpwd.c getopt.c getopt1.c getpagesize.c getruntime.c \
125 floatformat.c hashtab.c hex.c index.c insque.c lbasename.c \
126 md5.c make-temp-file.c memchr.c \
127 memcmp.c memcpy.c memmove.c memset.c mkstemps.c objalloc.c obstack.c \
128 partition.c pexecute.c putenv.c random.c \
129 regex.c rename.c rindex.c setenv.c \
130 sigsetmask.c safe-ctype.c sort.c spaces.c splay-tree.c strcasecmp.c \
131 strncasecmp.c strchr.c strdup.c strerror.c strncmp.c strrchr.c \
132 strsignal.c strstr.c strtod.c strtol.c strtoul.c tmpnam.c vasprintf.c \
133 vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c xatexit.c xexit.c \
134 xmalloc.c xmemdup.c xstrdup.c xstrerror.c ternary.c fibheap.c
135
136 # These are always included in the library.
137 REQUIRED_OFILES = argv.o alloca.o choose-temp.o concat.o cplus-dem.o \
138 cp-demangle.o dyn-string.o fdmatch.o fnmatch.o getopt.o getopt1.o \
139 getpwd.o getruntime.o hashtab.o hex.o floatformat.o lbasename.o \
140 md5.o make-temp-file.o objalloc.o \
141 obstack.o partition.o pexecute.o regex.o safe-ctype.o sort.o spaces.o \
142 splay-tree.o strerror.o strsignal.o xatexit.o xexit.o xmalloc.o \
143 xmemdup.o xstrdup.o xstrerror.o ternary.o fibheap.o
144
145 # These are all the objects that configure may add to the library via
146 # $funcs. This list exists here only for "make maint-missing".
147 CONFIGURED_OFILES = asprintf.o atexit.o basename.o bcmp.o bcopy.o \
148 bsearch.o bzero.o calloc.o clock.o ffs.o getcwd.o \
149 getpagesize.o index.o insque.o memchr.o memcmp.o memcpy.o \
150 memmove.o memset.o mkstemps.o putenv.o random.o rename.o \
151 rindex.o setenv.o sigsetmask.o strcasecmp.o strchr.o strdup.o \
152 strncasecmp.o strncmp.o strrchr.o strstr.o strtod.o strtol.o \
153 strtoul.o tmpnam.o vasprintf.o vfork.o vfprintf.o vprintf.o \
154 vsprintf.o waitpid.o
155
156 $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
157 -rm -f $(TARGETLIB)
158 $(AR) $(AR_FLAGS) $(TARGETLIB) \
159 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
160 $(RANLIB) $(TARGETLIB)
161
162 info: libiberty.info info-subdir
163 install-info: install-info-subdir
164 clean-info: clean-info-subdir
165 dvi: libiberty.dvi dvi-subdir
166 html: libiberty.html
167
168 TEXISRC = \
169 $(srcdir)/libiberty.texi \
170 $(srcdir)/copying-lib.texi \
171 $(srcdir)/obstacks.texi \
172 $(srcdir)/functions.texi
173
174 # Additional files that have texi snippets that need to be collected
175 # and sorted.
176 TEXIFILES =
177
178 libiberty.info : $(srcdir)/libiberty.texi $(TEXISRC)
179 $(MAKEINFO) -I$(srcdir) $(srcdir)/libiberty.texi
180
181 libiberty.dvi : $(srcdir)/libiberty.texi $(TEXISRC)
182 texi2dvi $(srcdir)/libiberty.texi
183
184 libiberty.html : $(srcdir)/libiberty.texi $(TEXISRC)
185 $(MAKEINFO) --html -I$(srcdir) $(srcdir)/libiberty.texi
186
187 @MAINT@$(srcdir)/functions.texi : stamp-functions
188 @MAINT@ @true
189
190 @MAINT@stamp-functions : $(CFILES) $(TEXIFILES) $(srcdir)/gather-docs Makefile
191 @MAINT@@HAVE_PERL@ $(PERL) $(srcdir)/gather-docs $(srcdir) $(srcdir)/functions.texi $(CFILES) $(TEXIFILES)
192 @MAINT@ echo stamp > stamp-functions
193
194 INSTALL_DEST = @INSTALL_DEST@
195 install: install_to_$(INSTALL_DEST) install-subdir
196
197 install_to_libdir: all
198 $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n
199 ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
200 mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
201 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
202
203 install_to_tooldir: all
204 $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n
205 ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
206 mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
207 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
208
209 # needed-list is used by libstdc++. NEEDED is the list of functions
210 # to include there. Do not add anything LGPL to this list; libstdc++
211 # can't use anything encumbering.
212 NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
213 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
214 vfork waitpid bcmp bcopy bzero
215 needed-list: Makefile
216 rm -f needed-list; touch needed-list; \
217 for f in $(NEEDED); do \
218 for g in $(LIBOBJS) $(EXTRA_OFILES); do \
219 case "$$g" in \
220 *$$f*) echo $$g >> needed-list ;; \
221 esac; \
222 done; \
223 done
224
225 # required-list was used when building a shared bfd/opcodes/libiberty
226 # library. I don't know if it used by anything currently.
227 required-list: Makefile
228 echo $(REQUIRED_OFILES) > required-list
229
230 stamp-picdir:
231 if [ x"$(PICFLAG)" != x ] && [ ! -d pic ]; then \
232 mkdir pic; \
233 else true; fi
234 touch stamp-picdir
235
236 .PHONY: all etags tags ls clean stage1 stage2
237
238 etags tags: TAGS etags-subdir
239
240 TAGS: $(CFILES)
241 etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done`
242
243 # The standalone demangler (c++filt) has been moved to binutils.
244 demangle:
245 @echo "The standalone demangler, now named c++filt, is now"
246 @echo "a part of binutils."
247 @false
248
249 ls:
250 @echo Makefile $(CFILES)
251
252 # Various targets for maintainers.
253
254 maint-missing :
255 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) missing $(CFILES) $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
256
257 maint-buildall : $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
258 @true
259
260 # Need to deal with profiled libraries, too.
261
262 # Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS
263 # multiple times, hence our explicit recursion with an empty SUBDIRS.
264 mostlyclean: mostlyclean-subdir
265 -rm -rf *.o pic core errs \#* *.E a.out
266 -rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
267 -rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
268 -rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky
269 -rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg
270 -rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr
271 -rm -f libtexi.stamp
272 @$(MULTICLEAN) multi-clean DO=mostlyclean
273 clean: clean-subdir
274 $(MAKE) SUBDIRS="" mostlyclean
275 -rm -f *.a required-list tmpmulti.out
276 -rm -f libiberty.dvi libiberty.info* libiberty.html
277 @$(MULTICLEAN) multi-clean DO=clean
278 distclean: distclean-subdir
279 $(MAKE) SUBDIRS="" clean
280 @$(MULTICLEAN) multi-clean DO=distclean
281 -rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
282 -rm -f config.log
283 -rmdir testsuite 2>/dev/null
284 maintainer-clean realclean: maintainer-clean-subdir
285 $(MAKE) SUBDIRS="" distclean
286
287 force:
288
289 Makefile: $(srcdir)/Makefile.in config.status
290 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
291
292 config.h: stamp-h ; @true
293 stamp-h: config.in config.status
294 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
295
296 config.status: $(srcdir)/configure $(srcdir)/config.table
297 $(SHELL) ./config.status --recheck
298
299 all-subdir check-subdir installcheck-subdir info-subdir \
300 install-info-subdir clean-info-subdir dvi-subdir install-subdir \
301 etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
302 maintainer-clean-subdir:
303 @subdirs='$(SUBDIRS)'; \
304 target=`echo $@ | sed -e 's/-subdir//'`; \
305 for dir in $$subdirs ; do \
306 cd $$dir && $(MAKE) $$target; \
307 done
308
309 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir
310
311 alloca.o: config.h $(INCDIR)/libiberty.h
312 atexit.o: config.h
313 argv.o: config.h $(INCDIR)/libiberty.h
314 basename.o: $(INCDIR)/libiberty.h
315 choose-temp.o: config.h
316 clock.o: config.h
317 concat.o: config.h $(INCDIR)/libiberty.h
318 cplus-dem.o: config.h $(INCDIR)/demangle.h
319 cp-demangle.o: config.h $(INCDIR)/dyn-string.h $(INCDIR)/demangle.h
320 dyn-string.o: config.h $(INCDIR)/dyn-string.h
321 fdmatch.o: $(INCDIR)/libiberty.h
322 fibheap.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/fibheap.h
323 fnmatch.o: config.h $(INCDIR)/fnmatch.h
324 getcwd.o: config.h
325 getopt.o: config.h $(INCDIR)/getopt.h
326 getopt1.o: config.h $(INCDIR)/getopt.h
327 getpagesize.o: config.h
328 getpwd.o: config.h $(INCDIR)/libiberty.h
329 getruntime.o: config.h $(INCDIR)/libiberty.h
330 hex.o: $(INCDIR)/libiberty.h
331 floatformat.o: $(INCDIR)/floatformat.h
332 lbasename.o: $(INCDIR)/libiberty.h
333 make-temp-file.o: config.h
334 mkstemps.o: config.h
335 md5.o: config.h
336 objalloc.o: config.h $(INCDIR)/objalloc.h
337 obstack.o: config.h $(INCDIR)/obstack.h
338 partition.o: config.h $(INCDIR)/partition.h
339 pexecute.o: config.h $(INCDIR)/libiberty.h
340 regex.o: config.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
341 rename.o: config.h
342 setenv.o: config.h
343 sort.o: config.h $(INCDIR)/sort.h $(INCDIR)/ansidecl.h
344 spaces.o: $(INCDIR)/libiberty.h
345 splay-tree.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h $(INCDIR)/ansidecl.h
346 strerror.o: config.h $(INCDIR)/libiberty.h
347 strsignal.o: config.h $(INCDIR)/libiberty.h
348 strtol.o: config.h
349 strtoul.o: config.h
350 ternary.o: config.h $(INCDIR)/ternary.h $(INCDIR)/libiberty.h
351 vasprintf.o: config.h
352 xatexit.o: $(INCDIR)/libiberty.h
353 xexit.o: config.h $(INCDIR)/libiberty.h
354 xmalloc.o: config.h $(INCDIR)/libiberty.h
355 xmemdup.o: config.h $(INCDIR)/libiberty.h
356 xstrdup.o: config.h $(INCDIR)/libiberty.h
357 xstrerror.o: config.h $(INCDIR)/libiberty.h
358 waitpid.o: config.h
359 hashtab.o: config.h $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h $(INCDIR)/ansidecl.h
This page took 0.049154 seconds and 5 git commands to generate.