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