merge from gcc
[deliverable/binutils-gdb.git] / libiberty / Makefile.in
CommitLineData
252b5132
RH
1#
2# Makefile
50d4562d 3# Copyright (C) 1990, 91-99, 2000, 2001, 2002
252b5132
RH
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
29srcdir = @srcdir@
30VPATH = @srcdir@
31
32prefix = @prefix@
33
34exec_prefix = @exec_prefix@
35bindir = @bindir@
36libdir = @libdir@
50d4562d
DD
37includedir = @includedir@
38target_header_dir = @target_header_dir@
252b5132
RH
39
40SHELL = @SHELL@
41
42# Multilib support variables.
43MULTISRCTOP =
44MULTIBUILDTOP =
45MULTIDIRS =
46MULTISUBDIR =
47MULTIDO = true
48MULTICLEAN = true
49
50INSTALL = @INSTALL@
51INSTALL_PROGRAM = @INSTALL_PROGRAM@
52INSTALL_DATA = @INSTALL_DATA@
50d4562d 53mkinstalldirs = $(SHELL) $(srcdir)/../mkinstalldirs
252b5132
RH
54
55AR = @AR@
56AR_FLAGS = rc
57
58CC = @CC@
59CFLAGS = @CFLAGS@
60LIBCFLAGS = $(CFLAGS)
61RANLIB = @RANLIB@
39423523
DD
62MAKEINFO = @MAKEINFO@
63PERL = @PERL@
252b5132
RH
64
65PICFLAG =
66
67MAKEOVERRIDES =
68
69TARGETLIB = libiberty.a
cc096b71 70TESTLIB = testlib.a
252b5132
RH
71
72LIBOBJS = @LIBOBJS@
252b5132
RH
73
74# A configuration can specify extra .o files that should be included,
75# even if they are in libc. (Perhaps the libc version is buggy.)
76EXTRA_OFILES =
77
78# Flags to pass to a recursive make.
79FLAGS_TO_PASS = \
80 "AR=$(AR)" \
81 "AR_FLAGS=$(AR_FLAGS)" \
82 "CC=$(CC)" \
83 "CFLAGS=$(CFLAGS)" \
84 "LIBCFLAGS=$(LIBCFLAGS)" \
85 "EXTRA_OFILES=$(EXTRA_OFILES)" \
86 "HDEFINES=$(HDEFINES)" \
87 "INSTALL=$(INSTALL)" \
88 "INSTALL_DATA=$(INSTALL_DATA)" \
89 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
90 "LDFLAGS=$(LDFLAGS)" \
91 "LOADLIBES=$(LOADLIBES)" \
92 "RANLIB=$(RANLIB)" \
0c0a36a4
ILT
93 "SHELL=$(SHELL)" \
94 "prefix=$(prefix)" \
95 "exec_prefix=$(exec_prefix)" \
96 "libdir=$(libdir)" \
97 "libsubdir=$(libsubdir)" \
98 "tooldir=$(tooldir)"
252b5132 99
0c0a36a4
ILT
100# Subdirectories to recurse into. We need to override this during cleaning
101SUBDIRS = testsuite
102
39423523 103# FIXME: add @BUILD_INFO@ once we're sure it works for everyone.
0c0a36a4 104all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
252b5132
RH
105 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
106
107.PHONY: check installcheck
0c0a36a4
ILT
108check: check-subdir
109installcheck: installcheck-subdir
252b5132
RH
110
111@host_makefile_frag@
112
113INCDIR=$(srcdir)/$(MULTISRCTOP)../include
114
eb383413 115COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
252b5132 116.c.o:
eb383413
L
117 if [ x"$(PICFLAG)" != x ]; then \
118 $(COMPILE.c) $(PICFLAG) $< -o pic/$@; \
119 else true; fi
252b5132
RH
120 $(COMPILE.c) $<
121
252b5132 122# NOTE: If you add new files to the library, add them to this list
cc096b71
DD
123# (alphabetical), and add them to REQUIRED_OFILES, or
124# CONFIGURED_OFILES and funcs in configure.in.
125CFILES = alloca.c argv.c asprintf.c atexit.c \
126 basename.c bcmp.c bcopy.c bsearch.c bzero.c \
127 calloc.c choose-temp.c clock.c concat.c cp-demangle.c \
128 cplus-dem.c \
129 dyn-string.c \
130 fdmatch.c ffs.c fibheap.c floatformat.c fnmatch.c \
131 getcwd.c getopt.c getopt1.c getpagesize.c getpwd.c getruntime.c \
132 hashtab.c hex.c \
133 index.c insque.c \
134 lbasename.c \
135 make-temp-file.c md5.c memchr.c memcmp.c memcpy.c memmove.c \
136 memset.c mkstemps.c \
137 objalloc.c obstack.c \
138 partition.c pexecute.c putenv.c \
139 random.c regex.c rename.c rindex.c \
140 safe-ctype.c setenv.c sigsetmask.c sort.c spaces.c \
141 splay-tree.c strcasecmp.c strchr.c strdup.c strerror.c \
142 strncasecmp.c strncmp.c strrchr.c strsignal.c strstr.c \
143 strtod.c strtol.c strtoul.c \
144 ternary.c tmpnam.c \
145 vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c \
146 waitpid.c \
147 xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c xstrerror.c
148
149# These are always included in the library. The first four are listed
150# first and by compile time to optimize parallel builds.
151REQUIRED_OFILES = regex.o cplus-dem.o cp-demangle.o md5.o \
152 alloca.o argv.o \
153 choose-temp.o concat.o \
154 dyn-string.o \
155 fdmatch.o fibheap.o floatformat.o fnmatch.o \
156 getopt.o getopt1.o getpwd.o getruntime.o \
157 hashtab.o hex.o \
158 lbasename.o \
159 make-temp-file.o \
160 objalloc.o obstack.o \
161 partition.o pexecute.o \
162 safe-ctype.o sort.o spaces.o splay-tree.o strerror.o \
163 strsignal.o \
164 ternary.o \
165 xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o
30673bf5 166
39423523 167# These are all the objects that configure may add to the library via
cc096b71
DD
168# $funcs or EXTRA_OFILES. This list exists here only for "make
169# maint-missing" and "make check".
170CONFIGURED_OFILES = asprintf.o atexit.o \
171 basename.o bcmp.o bcopy.o bsearch.o bzero.o \
172 calloc.o clock.o copysign.o \
173 _doprnt.o \
174 ffs.o \
175 getcwd.o getpagesize.o \
176 index.o insque.o \
177 memchr.o memcmp.o memcpy.o memmove.o memset.o mkstemps.o \
178 putenv.o \
179 random.o rename.o rindex.o \
180 setenv.o sigsetmask.o strcasecmp.o strchr.o strdup.o \
181 strncasecmp.o strncmp.o strrchr.o strstr.o strtod.o strtol.o \
182 strtoul.o \
183 tmpnam.o \
184 vasprintf.o vfork.o vfprintf.o vprintf.o vsprintf.o \
185 waitpid.o
39423523 186
50d4562d
DD
187# These files are installed if the library has been configured to do so.
188INSTALLED_HEADERS = \
189 $(INCDIR)/ansidecl.h \
190 $(INCDIR)/demangle.h \
191 $(INCDIR)/dyn-string.h \
192 $(INCDIR)/fibheap.h \
193 $(INCDIR)/floatformat.h \
194 $(INCDIR)/hashtab.h \
195 $(INCDIR)/libiberty.h \
196 $(INCDIR)/objalloc.h \
197 $(INCDIR)/partition.h \
198 $(INCDIR)/safe-ctype.h \
199 $(INCDIR)/sort.h \
200 $(INCDIR)/splay-tree.h \
201 $(INCDIR)/ternary.h
202
30673bf5 203$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
3bc62f91 204 -rm -f $(TARGETLIB) pic/$(TARGETLIB)
252b5132 205 $(AR) $(AR_FLAGS) $(TARGETLIB) \
30673bf5 206 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
252b5132 207 $(RANLIB) $(TARGETLIB)
3bc62f91
DD
208 if [ x"$(PICFLAG)" != x ]; then \
209 cd pic; \
210 $(AR) $(AR_FLAGS) $(TARGETLIB) \
211 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \
212 $(RANLIB) $(TARGETLIB); \
213 cd ..; \
214 else true; fi
252b5132 215
cc096b71
DD
216$(TESTLIB): $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
217 -rm -f $(TESTLIB)
218 $(AR) $(AR_FLAGS) $(TESTLIB) \
219 $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
220 $(RANLIB) $(TESTLIB)
221
39423523
DD
222info: libiberty.info info-subdir
223install-info: install-info-subdir
224clean-info: clean-info-subdir
225dvi: libiberty.dvi dvi-subdir
226html: libiberty.html
227
228TEXISRC = \
229 $(srcdir)/libiberty.texi \
230 $(srcdir)/copying-lib.texi \
231 $(srcdir)/obstacks.texi \
232 $(srcdir)/functions.texi
233
234# Additional files that have texi snippets that need to be collected
ba19b94f
DD
235# and sorted. Some are here because the sources are imported from
236# elsewhere. Others represent headers in ../include.
237TEXIFILES = fnmatch.txh
39423523
DD
238
239libiberty.info : $(srcdir)/libiberty.texi $(TEXISRC)
240 $(MAKEINFO) -I$(srcdir) $(srcdir)/libiberty.texi
241
242libiberty.dvi : $(srcdir)/libiberty.texi $(TEXISRC)
243 texi2dvi $(srcdir)/libiberty.texi
244
245libiberty.html : $(srcdir)/libiberty.texi $(TEXISRC)
246 $(MAKEINFO) --html -I$(srcdir) $(srcdir)/libiberty.texi
247
248@MAINT@$(srcdir)/functions.texi : stamp-functions
249@MAINT@ @true
250
251@MAINT@stamp-functions : $(CFILES) $(TEXIFILES) $(srcdir)/gather-docs Makefile
252@MAINT@@HAVE_PERL@ $(PERL) $(srcdir)/gather-docs $(srcdir) $(srcdir)/functions.texi $(CFILES) $(TEXIFILES)
253@MAINT@ echo stamp > stamp-functions
254
252b5132 255INSTALL_DEST = @INSTALL_DEST@
0c0a36a4 256install: install_to_$(INSTALL_DEST) install-subdir
252b5132
RH
257
258install_to_libdir: all
19c33eeb
ILT
259 $(INSTALL_DATA) $(TARGETLIB) $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n
260 ( cd $(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
261 mv -f $(libdir)$(MULTISUBDIR)/$(TARGETLIB)n $(libdir)$(MULTISUBDIR)/$(TARGETLIB)
50d4562d
DD
262 if test -n "${target_header_dir}"; then \
263 case "${target_header_dir}" in \
264 /*) thd=${target_header_dir};; \
265 *) thd=${includedir}${MULTISUBDIR}/${target_header_dir};; \
266 esac; \
267 ${mkinstalldirs} $${thd}; \
268 for h in ${INSTALLED_HEADERS}; do \
269 ${INSTALL_DATA} $$h $${thd}; \
270 done; \
271 fi
252b5132
RH
272 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
273
274install_to_tooldir: all
19c33eeb
ILT
275 $(INSTALL_DATA) $(TARGETLIB) $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n
276 ( cd $(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
277 mv -f $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n $(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)
252b5132
RH
278 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
279
0c0a36a4
ILT
280# needed-list is used by libstdc++. NEEDED is the list of functions
281# to include there. Do not add anything LGPL to this list; libstdc++
282# can't use anything encumbering.
283NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
eb383413 284 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
0c0a36a4 285 vfork waitpid bcmp bcopy bzero
252b5132 286needed-list: Makefile
0c0a36a4
ILT
287 rm -f needed-list; touch needed-list; \
288 for f in $(NEEDED); do \
289 for g in $(LIBOBJS) $(EXTRA_OFILES); do \
290 case "$$g" in \
291 *$$f*) echo $$g >> needed-list ;; \
292 esac; \
293 done; \
294 done
252b5132
RH
295
296# required-list was used when building a shared bfd/opcodes/libiberty
297# library. I don't know if it used by anything currently.
298required-list: Makefile
299 echo $(REQUIRED_OFILES) > required-list
300
301stamp-picdir:
eb383413 302 if [ x"$(PICFLAG)" != x ] && [ ! -d pic ]; then \
252b5132
RH
303 mkdir pic; \
304 else true; fi
305 touch stamp-picdir
306
307.PHONY: all etags tags ls clean stage1 stage2
308
0c0a36a4 309etags tags: TAGS etags-subdir
252b5132 310
30673bf5
DD
311TAGS: $(CFILES)
312 etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done`
252b5132
RH
313
314# The standalone demangler (c++filt) has been moved to binutils.
315demangle:
316 @echo "The standalone demangler, now named c++filt, is now"
317 @echo "a part of binutils."
318 @false
319
320ls:
30673bf5 321 @echo Makefile $(CFILES)
252b5132 322
39423523
DD
323# Various targets for maintainers.
324
325maint-missing :
326 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) missing $(CFILES) $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
327
328maint-buildall : $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
329 @true
330
ba19b94f
DD
331maint-undoc : $(srcdir)/functions.texi
332 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) undoc
333
cc096b71
DD
334maint-deps :
335 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) deps $(INCDIR)
336
252b5132
RH
337# Need to deal with profiled libraries, too.
338
0c0a36a4
ILT
339# Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS
340# multiple times, hence our explicit recursion with an empty SUBDIRS.
341mostlyclean: mostlyclean-subdir
c00c39ed
DD
342 -rm -rf *.o pic core errs \#* *.E a.out
343 -rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-*
344 -rm -f $(CONFIG_H) $(NEEDED_LIST) stamp-picdir
39423523
DD
345 -rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky
346 -rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg
347 -rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr
348 -rm -f libtexi.stamp
252b5132 349 @$(MULTICLEAN) multi-clean DO=mostlyclean
0c0a36a4
ILT
350clean: clean-subdir
351 $(MAKE) SUBDIRS="" mostlyclean
c00c39ed 352 -rm -f *.a required-list tmpmulti.out
39423523 353 -rm -f libiberty.dvi libiberty.info* libiberty.html
252b5132 354 @$(MULTICLEAN) multi-clean DO=clean
0c0a36a4
ILT
355distclean: distclean-subdir
356 $(MAKE) SUBDIRS="" clean
252b5132 357 @$(MULTICLEAN) multi-clean DO=distclean
c00c39ed
DD
358 -rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
359 -rm -f config.log
4415a860 360 -rmdir testsuite 2>/dev/null
0c0a36a4
ILT
361maintainer-clean realclean: maintainer-clean-subdir
362 $(MAKE) SUBDIRS="" distclean
252b5132
RH
363
364force:
365
366Makefile: $(srcdir)/Makefile.in config.status
367 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
368
fec50157
DD
369# Depending on Makefile makes sure that config.status has been re-run
370# if needed. This prevents problems with parallel builds.
252b5132 371config.h: stamp-h ; @true
fec50157 372stamp-h: config.in config.status Makefile
252b5132
RH
373 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
374
375config.status: $(srcdir)/configure $(srcdir)/config.table
376 $(SHELL) ./config.status --recheck
377
fec50157
DD
378# Depending on config.h makes sure that config.status has been re-run
379# if needed. This prevents problems with parallel builds, in case
380# subdirectories need to run config.status also.
0c0a36a4
ILT
381all-subdir check-subdir installcheck-subdir info-subdir \
382install-info-subdir clean-info-subdir dvi-subdir install-subdir \
383etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
fec50157 384maintainer-clean-subdir: config.h
010c70e1 385 @subdirs='$(SUBDIRS)'; \
19be4303 386 target=`echo $@ | sed -e 's/-subdir//'`; \
010c70e1 387 for dir in $$subdirs ; do \
19be4303 388 cd $$dir && $(MAKE) $$target; \
0c0a36a4
ILT
389 done
390
30673bf5 391$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir
cc096b71
DD
392$(CONFIGURED_OFILES): stamp-picdir
393
394# The dependencies in the remainder of this file are automatically
395# generated by "make maint-deps". Manual edits will be lost.
252b5132 396
cc096b71
DD
397_doprnt.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
398alloca.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
399argv.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
400asprintf.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
252b5132 401atexit.o: config.h
cc096b71
DD
402basename.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
403 $(INCDIR)/safe-ctype.h
404bsearch.o: config.h $(INCDIR)/ansidecl.h
405calloc.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
406choose-temp.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
252b5132 407clock.o: config.h
cc096b71
DD
408concat.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
409copysign.o: $(INCDIR)/ansidecl.h
410cp-demangle.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h \
411 $(INCDIR)/dyn-string.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h
412cplus-dem.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h \
413 $(INCDIR)/getopt.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
414dyn-string.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/dyn-string.h \
415 $(INCDIR)/libiberty.h
416fdmatch.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
417fibheap.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/fibheap.h \
418 $(INCDIR)/libiberty.h
419floatformat.o: $(INCDIR)/ansidecl.h $(INCDIR)/floatformat.h
420fnmatch.o: config.h $(INCDIR)/fnmatch.h $(INCDIR)/safe-ctype.h
252b5132
RH
421getcwd.o: config.h
422getopt.o: config.h $(INCDIR)/getopt.h
423getopt1.o: config.h $(INCDIR)/getopt.h
424getpagesize.o: config.h
cc096b71
DD
425getpwd.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
426getruntime.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
427hashtab.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/hashtab.h \
428 $(INCDIR)/libiberty.h
429hex.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
430lbasename.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
431 $(INCDIR)/safe-ctype.h
432make-temp-file.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
433md5.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h
434memchr.o: $(INCDIR)/ansidecl.h
435memcmp.o: $(INCDIR)/ansidecl.h
436memcpy.o: $(INCDIR)/ansidecl.h
437memmove.o: $(INCDIR)/ansidecl.h
438memset.o: $(INCDIR)/ansidecl.h
439mkstemps.o: config.h $(INCDIR)/ansidecl.h
440objalloc.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/objalloc.h
252b5132 441obstack.o: config.h $(INCDIR)/obstack.h
cc096b71
DD
442partition.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
443 $(INCDIR)/partition.h
444pexecute.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
445 $(INCDIR)/safe-ctype.h
446putenv.o: config.h $(INCDIR)/ansidecl.h
447random.o: $(INCDIR)/ansidecl.h
a5d8f731 448regex.o: config.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
90aaccd1 449rename.o: config.h
cc096b71
DD
450safe-ctype.o: $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
451setenv.o: config.h $(INCDIR)/ansidecl.h
452sigsetmask.o: $(INCDIR)/ansidecl.h
453sort.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
454 $(INCDIR)/sort.h
455spaces.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
456splay-tree.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
457 $(INCDIR)/splay-tree.h
458strcasecmp.o: $(INCDIR)/ansidecl.h
459strchr.o: $(INCDIR)/ansidecl.h
460strerror.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
461strncasecmp.o: $(INCDIR)/ansidecl.h
462strncmp.o: $(INCDIR)/ansidecl.h
463strrchr.o: $(INCDIR)/ansidecl.h
464strsignal.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
465strtod.o: $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
466strtol.o: config.h $(INCDIR)/safe-ctype.h
467strtoul.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
468ternary.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
469 $(INCDIR)/ternary.h
470vasprintf.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
471vfork.o: $(INCDIR)/ansidecl.h
472vprintf.o: $(INCDIR)/ansidecl.h
473vsprintf.o: $(INCDIR)/ansidecl.h
90aaccd1 474waitpid.o: config.h
cc096b71
DD
475xatexit.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
476xexit.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
477xmalloc.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
478xmemdup.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
479xstrdup.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
480xstrerror.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
This page took 0.136641 seconds and 4 git commands to generate.