2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
[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 AR = @AR@
56 AR_FLAGS = rc
57
58 CC = @CC@
59 CFLAGS = @CFLAGS@
60 LIBCFLAGS = $(CFLAGS)
61 RANLIB = @RANLIB@
62 MAKEINFO = @MAKEINFO@
63 PERL = @PERL@
64
65 PICFLAG =
66
67 MAKEOVERRIDES =
68
69 TARGETLIB = libiberty.a
70 TESTLIB = testlib.a
71
72 LIBOBJS = @LIBOBJS@
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.)
76 EXTRA_OFILES =
77
78 # Flags to pass to a recursive make.
79 FLAGS_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)" \
93 "SHELL=$(SHELL)" \
94 "prefix=$(prefix)" \
95 "exec_prefix=$(exec_prefix)" \
96 "libdir=$(libdir)" \
97 "libsubdir=$(libsubdir)" \
98 "tooldir=$(tooldir)"
99
100 # Subdirectories to recurse into. We need to override this during cleaning
101 SUBDIRS = testsuite
102
103 # FIXME: add @BUILD_INFO@ once we're sure it works for everyone.
104 all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
105 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
106
107 .PHONY: check installcheck
108 check: check-subdir
109 installcheck: installcheck-subdir
110
111 @host_makefile_frag@
112
113 INCDIR=$(srcdir)/$(MULTISRCTOP)../include
114
115 COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
116 .c.o:
117 if [ x"$(PICFLAG)" != x ]; then \
118 $(COMPILE.c) $(PICFLAG) $< -o pic/$@; \
119 else true; fi
120 $(COMPILE.c) $<
121
122 # NOTE: If you add new files to the library, add them to this list
123 # (alphabetical), and add them to REQUIRED_OFILES, or
124 # CONFIGURED_OFILES and funcs in configure.in.
125 CFILES = 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.
151 REQUIRED_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
166
167 # These are all the objects that configure may add to the library via
168 # $funcs or EXTRA_OFILES. This list exists here only for "make
169 # maint-missing" and "make check".
170 CONFIGURED_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
186
187 # These files are installed if the library has been configured to do so.
188 INSTALLED_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
203 $(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
204 -rm -f $(TARGETLIB) pic/$(TARGETLIB)
205 $(AR) $(AR_FLAGS) $(TARGETLIB) \
206 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
207 $(RANLIB) $(TARGETLIB)
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
215
216 $(TESTLIB): $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
217 -rm -f $(TESTLIB)
218 $(AR) $(AR_FLAGS) $(TESTLIB) \
219 $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
220 $(RANLIB) $(TESTLIB)
221
222 info: libiberty.info info-subdir
223 install-info: install-info-subdir
224 clean-info: clean-info-subdir
225 dvi: libiberty.dvi dvi-subdir
226 html: libiberty.html
227
228 TEXISRC = \
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
235 # and sorted. Some are here because the sources are imported from
236 # elsewhere. Others represent headers in ../include.
237 TEXIFILES = fnmatch.txh
238
239 libiberty.info : $(srcdir)/libiberty.texi $(TEXISRC)
240 $(MAKEINFO) -I$(srcdir) $(srcdir)/libiberty.texi
241
242 libiberty.dvi : $(srcdir)/libiberty.texi $(TEXISRC)
243 texi2dvi $(srcdir)/libiberty.texi
244
245 libiberty.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
255 INSTALL_DEST = @INSTALL_DEST@
256 install: install_to_$(INSTALL_DEST) install-subdir
257
258 install_to_libdir: all
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)
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
272 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
273
274 install_to_tooldir: all
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)
278 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
279
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.
283 NEEDED = atexit calloc memchr memcmp memcpy memmove memset rename strchr \
284 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
285 vfork waitpid bcmp bcopy bzero
286 needed-list: Makefile
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
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.
298 required-list: Makefile
299 echo $(REQUIRED_OFILES) > required-list
300
301 stamp-picdir:
302 if [ x"$(PICFLAG)" != x ] && [ ! -d pic ]; then \
303 mkdir pic; \
304 else true; fi
305 touch stamp-picdir
306
307 .PHONY: all etags tags ls clean stage1 stage2
308
309 etags tags: TAGS etags-subdir
310
311 TAGS: $(CFILES)
312 etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done`
313
314 # The standalone demangler (c++filt) has been moved to binutils.
315 demangle:
316 @echo "The standalone demangler, now named c++filt, is now"
317 @echo "a part of binutils."
318 @false
319
320 ls:
321 @echo Makefile $(CFILES)
322
323 # Various targets for maintainers.
324
325 maint-missing :
326 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) missing $(CFILES) $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
327
328 maint-buildall : $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
329 @true
330
331 maint-undoc : $(srcdir)/functions.texi
332 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) undoc
333
334 maint-deps :
335 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) deps $(INCDIR)
336
337 # Need to deal with profiled libraries, too.
338
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.
341 mostlyclean: mostlyclean-subdir
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
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
349 @$(MULTICLEAN) multi-clean DO=mostlyclean
350 clean: clean-subdir
351 $(MAKE) SUBDIRS="" mostlyclean
352 -rm -f *.a required-list tmpmulti.out
353 -rm -f libiberty.dvi libiberty.info* libiberty.html
354 @$(MULTICLEAN) multi-clean DO=clean
355 distclean: distclean-subdir
356 $(MAKE) SUBDIRS="" clean
357 @$(MULTICLEAN) multi-clean DO=distclean
358 -rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out
359 -rm -f config.log
360 -rmdir testsuite 2>/dev/null
361 maintainer-clean realclean: maintainer-clean-subdir
362 $(MAKE) SUBDIRS="" distclean
363
364 force:
365
366 Makefile: $(srcdir)/Makefile.in config.status
367 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
368
369 # Depending on Makefile makes sure that config.status has been re-run
370 # if needed. This prevents problems with parallel builds.
371 config.h: stamp-h ; @true
372 stamp-h: config.in config.status Makefile
373 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
374
375 config.status: $(srcdir)/configure $(srcdir)/config.table
376 $(SHELL) ./config.status --recheck
377
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.
381 all-subdir check-subdir installcheck-subdir info-subdir \
382 install-info-subdir clean-info-subdir dvi-subdir install-subdir \
383 etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
384 maintainer-clean-subdir: config.h
385 @subdirs='$(SUBDIRS)'; \
386 target=`echo $@ | sed -e 's/-subdir//'`; \
387 for dir in $$subdirs ; do \
388 cd $$dir && $(MAKE) $$target; \
389 done
390
391 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir
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.
396
397 _doprnt.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
398 alloca.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
399 argv.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
400 asprintf.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
401 atexit.o: config.h
402 basename.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
403 $(INCDIR)/safe-ctype.h
404 bsearch.o: config.h $(INCDIR)/ansidecl.h
405 calloc.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
406 choose-temp.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
407 clock.o: config.h
408 concat.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
409 copysign.o: $(INCDIR)/ansidecl.h
410 cp-demangle.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h \
411 $(INCDIR)/dyn-string.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h
412 cplus-dem.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h \
413 $(INCDIR)/getopt.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
414 dyn-string.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/dyn-string.h \
415 $(INCDIR)/libiberty.h
416 fdmatch.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
417 fibheap.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/fibheap.h \
418 $(INCDIR)/libiberty.h
419 floatformat.o: $(INCDIR)/ansidecl.h $(INCDIR)/floatformat.h
420 fnmatch.o: config.h $(INCDIR)/fnmatch.h $(INCDIR)/safe-ctype.h
421 getcwd.o: config.h
422 getopt.o: config.h $(INCDIR)/getopt.h
423 getopt1.o: config.h $(INCDIR)/getopt.h
424 getpagesize.o: config.h
425 getpwd.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
426 getruntime.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
427 hashtab.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/hashtab.h \
428 $(INCDIR)/libiberty.h
429 hex.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
430 lbasename.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
431 $(INCDIR)/safe-ctype.h
432 make-temp-file.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
433 md5.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h
434 memchr.o: $(INCDIR)/ansidecl.h
435 memcmp.o: $(INCDIR)/ansidecl.h
436 memcpy.o: $(INCDIR)/ansidecl.h
437 memmove.o: $(INCDIR)/ansidecl.h
438 memset.o: $(INCDIR)/ansidecl.h
439 mkstemps.o: config.h $(INCDIR)/ansidecl.h
440 objalloc.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/objalloc.h
441 obstack.o: config.h $(INCDIR)/obstack.h
442 partition.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
443 $(INCDIR)/partition.h
444 pexecute.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
445 $(INCDIR)/safe-ctype.h
446 putenv.o: config.h $(INCDIR)/ansidecl.h
447 random.o: $(INCDIR)/ansidecl.h
448 regex.o: config.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
449 rename.o: config.h
450 safe-ctype.o: $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
451 setenv.o: config.h $(INCDIR)/ansidecl.h
452 sigsetmask.o: $(INCDIR)/ansidecl.h
453 sort.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
454 $(INCDIR)/sort.h
455 spaces.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
456 splay-tree.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
457 $(INCDIR)/splay-tree.h
458 strcasecmp.o: $(INCDIR)/ansidecl.h
459 strchr.o: $(INCDIR)/ansidecl.h
460 strerror.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
461 strncasecmp.o: $(INCDIR)/ansidecl.h
462 strncmp.o: $(INCDIR)/ansidecl.h
463 strrchr.o: $(INCDIR)/ansidecl.h
464 strsignal.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
465 strtod.o: $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
466 strtol.o: config.h $(INCDIR)/safe-ctype.h
467 strtoul.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
468 ternary.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
469 $(INCDIR)/ternary.h
470 vasprintf.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
471 vfork.o: $(INCDIR)/ansidecl.h
472 vprintf.o: $(INCDIR)/ansidecl.h
473 vsprintf.o: $(INCDIR)/ansidecl.h
474 waitpid.o: config.h
475 xatexit.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
476 xexit.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
477 xmalloc.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
478 xmemdup.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
479 xstrdup.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
480 xstrerror.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
This page took 0.039351 seconds and 4 git commands to generate.