source: trunk/src/gcc/libiberty/Makefile.in@ 2013

Last change on this file since 2013 was 1394, checked in by bird, 21 years ago

#1040: Joined the GCC 3.3.3 with the trunk.

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