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