3 # Copyright (C) 1990, 91-99, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 # Free Software Foundation
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.
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.
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., 51 Franklin Street - Fifth Floor,
20 # Boston, MA 02110-1301, USA.
23 # This file was written by K. Richard Pixley <rich@cygnus.com>.
26 # Makefile for libiberty directory
29 libiberty_topdir
= @libiberty_topdir@
34 exec_prefix = @
exec_prefix@
37 includedir = @
includedir@
38 target_header_dir
= @target_header_dir@
42 # Multilib support variables.
51 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
52 INSTALL_DATA
= @INSTALL_DATA@
53 mkinstalldirs
= $(SHELL
) $(libiberty_topdir
)/mkinstalldirs
55 # Some compilers can't handle cc -c blah.c -o foo/blah.o.
56 OUTPUT_OPTION
= @OUTPUT_OPTION@
72 TARGETLIB
= .
/libiberty.a
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.)
81 # Flags to pass to a recursive make.
84 "AR_FLAGS=$(AR_FLAGS)" \
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)" \
99 "exec_prefix=$(exec_prefix)" \
101 "libsubdir=$(libsubdir)" \
104 # Subdirectories to recurse into. We need to override this during cleaning
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
111 .PHONY
: check installcheck
113 installcheck: installcheck-subdir
117 INCDIR
=$(srcdir)/$(MULTISRCTOP
)..
/include
119 COMPILE.c
= $(CC
) -c @DEFS@
$(LIBCFLAGS
) -I.
-I
$(INCDIR
) $(HDEFINES
) @ac_libiberty_warn_cflags@
121 # Just to make sure we don't use a built-in rule with VPATH
125 # NOTE: If you add new files to the library, add them to this list
126 # (alphabetical), and add them to REQUIRED_OFILES, or
127 # CONFIGURED_OFILES and funcs in configure.ac. Also run "make maint-deps"
128 # to build the new rules.
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 cp-demint.c cplus-dem.c \
134 fdmatch.c ffs.c fibheap.c filename_cmp.c floatformat.c \
135 fnmatch.c fopen_unlocked.c \
136 getcwd.c getopt.c getopt1.c getpagesize.c getpwd.c getruntime.c \
142 make-relative-prefix.c \
143 make-temp-file.c md5.c memchr.c memcmp.c memcpy.c memmove.c \
144 mempcpy.c memset.c mkstemps.c \
145 objalloc.c obstack.c \
146 partition.c pexecute.c \
147 pex-common.c pex-djgpp.c pex-msdos.c pex-one.c \
148 pex-unix.c pex-win32.c \
150 random.c regex.c rename.c rindex.c \
151 safe-ctype.c setenv.c sigsetmask.c snprintf.c
sort.c spaces.c \
152 splay-tree.c stpcpy.c stpncpy.c strcasecmp.c strchr.c strdup.c \
153 strerror.c strncasecmp.c strncmp.c strrchr.c strsignal.c \
154 strstr.c strtod.c strtol.c strtoul.c strndup.c strverscmp.c \
156 unlink-if-ordinary.c \
157 vasprintf.c vfork.c vfprintf.c vprintf.c vsnprintf.c vsprintf.c \
159 xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c xstrerror.c \
162 # These are always included in the library. The first four are listed
163 # first and by compile time to optimize parallel builds.
164 REQUIRED_OFILES
= .
/regex.o .
/cplus-dem.o .
/cp-demangle.o .
/md5.o \
165 .
/alloca.o .
/argv.o \
166 .
/choose-temp.o .
/concat.o .
/cp-demint.o \
168 .
/fdmatch.o .
/fibheap.o .
/filename_cmp.o .
/floatformat.o \
169 .
/fnmatch.o .
/fopen_unlocked.o \
170 .
/getopt.o .
/getopt1.o .
/getpwd.o .
/getruntime.o \
171 .
/hashtab.o .
/hex.o \
172 .
/lbasename.o .
/lrealpath.o \
173 .
/make-relative-prefix.o .
/make-temp-file.o \
174 .
/objalloc.o .
/obstack.o \
175 .
/partition.o .
/pexecute.o .
/physmem.o \
176 .
/pex-common.o .
/pex-one.o @pexecute@ \
177 .
/safe-ctype.o .
/sort.o .
/spaces.o .
/splay-tree.o .
/strerror.o \
180 .
/unlink-if-ordinary.o \
181 .
/xatexit.o .
/xexit.o .
/xmalloc.o .
/xmemdup.o .
/xstrdup.o \
182 .
/xstrerror.o .
/xstrndup.o
184 # These are all the objects that configure may add to the library via
185 # $funcs or EXTRA_OFILES. This list exists here only for "make
186 # maint-missing" and "make check".
187 CONFIGURED_OFILES
= .
/asprintf.o .
/atexit.o \
188 .
/basename.o .
/bcmp.o .
/bcopy.o .
/bsearch.o .
/bzero.o \
189 .
/calloc.o .
/clock.o .
/copysign.o \
192 .
/getcwd.o .
/getpagesize.o .
/gettimeofday.o \
193 .
/index.o .
/insque.o \
194 .
/memchr.o .
/memcmp.o .
/memcpy.o .
/memmove.o .
/mempcpy.o \
195 .
/memset.o .
/mkstemps.o \
196 .
/pex-djgpp.o .
/pex-msdos.o \
197 .
/pex-unix.o .
/pex-win32.o \
199 .
/random.o .
/rename.o .
/rindex.o \
200 .
/setenv.o .
/sigsetmask.o .
/snprintf.o .
/stpcpy.o .
/stpncpy.o \
201 .
/strcasecmp.o .
/strchr.o .
/strdup.o .
/strncasecmp.o \
202 .
/strncmp.o .
/strndup.o .
/strrchr.o .
/strstr.o \
203 .
/strtod.o .
/strtol.o .
/strtoul.o .
/strverscmp.o \
205 .
/vasprintf.o .
/vfork.o .
/vfprintf.o .
/vprintf.o .
/vsnprintf.o \
209 # These files are installed if the library has been configured to do so.
210 INSTALLED_HEADERS
= \
211 $(INCDIR
)/ansidecl.h \
212 $(INCDIR
)/demangle.h \
213 $(INCDIR
)/dyn-string.h \
214 $(INCDIR
)/fibheap.h \
215 $(INCDIR
)/floatformat.h \
216 $(INCDIR
)/hashtab.h \
217 $(INCDIR
)/libiberty.h \
218 $(INCDIR
)/objalloc.h \
219 $(INCDIR
)/partition.h \
220 $(INCDIR
)/safe-ctype.h \
222 $(INCDIR
)/splay-tree.h \
225 $(TARGETLIB
): $(REQUIRED_OFILES
) $(EXTRA_OFILES
) $(LIBOBJS
)
226 -rm -f
$(TARGETLIB
) pic
/$(TARGETLIB
)
227 $(AR
) $(AR_FLAGS
) $(TARGETLIB
) \
228 $(REQUIRED_OFILES
) $(EXTRA_OFILES
) $(LIBOBJS
)
229 $(RANLIB
) $(TARGETLIB
)
230 if
[ x
"$(PICFLAG)" != x
]; then \
232 $(AR
) $(AR_FLAGS
) $(TARGETLIB
) \
233 $(REQUIRED_OFILES
) $(EXTRA_OFILES
) $(LIBOBJS
); \
234 $(RANLIB
) $(TARGETLIB
); \
238 $(TESTLIB
): $(REQUIRED_OFILES
) $(CONFIGURED_OFILES
)
240 $(AR
) $(AR_FLAGS
) $(TESTLIB
) \
241 $(REQUIRED_OFILES
) $(CONFIGURED_OFILES
)
244 info: libiberty.
info info-subdir
245 install-info
: install-info-subdir
246 clean-info
: clean-info-subdir
247 dvi: libiberty.
dvi dvi-subdir
249 LIBIBERTY_PDFFILES
= libiberty.pdf
251 pdf
: $(LIBIBERTY_PDFFILES
) pdf-subdir
255 pdf__strip_dir
= `echo $$p | sed -e 's|^.*/||'`;
257 install-pdf
: $(LIBIBERTY_PDFFILES
)
259 test -z
"$(pdfdir)" ||
$(mkinstalldirs
) "$(DESTDIR)$(pdfdir)"
260 @list
='$(LIBIBERTY_PDFFILES)'; for p in
$$list; do \
261 if
test -f
"$$p"; then d
=; else d
="$(srcdir)/"; fi
; \
262 f
=$(pdf__strip_dir
) \
263 echo
" $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
264 $(INSTALL_DATA
) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
267 # html, install-html targets
268 HTMLS
= libiberty.html
272 .PHONY
: install-html install-html-am install-html-recursive
275 mkdir_p
= mkdir
-p
--
277 html__strip_dir
= `echo $$p | sed -e 's|^.*/||'`;
279 install-html
: install-html-recursive install-html-am
281 install-html-am
: $(HTMLS
)
283 test -z
"$(htmldir)" ||
$(mkdir_p
) "$(DESTDIR)$(htmldir)"
284 @list
='$(HTMLS)'; for p in
$$list; do \
285 if
test -f
"$$p" ||
test -d
"$$p"; then d
=""; else d
="$(srcdir)/"; fi
; \
286 f
=$(html__strip_dir
) \
287 if
test -d
"$$d$$p"; then \
288 echo
" $(mkdir_p) '$(DESTDIR)$(htmldir)/$$f'"; \
289 $(mkdir_p
) "$(DESTDIR)$(htmldir)/$$f" || exit
1; \
290 echo
" $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
291 $(INSTALL_DATA
) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
293 echo
" $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
294 $(INSTALL_DATA
) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
298 install-html-recursive
:
300 for f in x
$$MAKEFLAGS; do \
303 *k
*) failcom
='fail=yes';; \
307 target
=`echo $@ | sed s/-recursive//`; \
308 list
='$(SUBDIRS)'; for subdir in
$$list; do \
309 echo
"Making $$target in $$subdir"; \
310 if
test "$$subdir" = "."; then \
312 local_target
="$$target-am"; \
314 local_target
="$$target"; \
316 (cd
$$subdir && $(MAKE
) $(AM_MAKEFLAGS
) $$local_target) \
319 if
test "$$dot_seen" = "no"; then \
320 $(MAKE
) $(AM_MAKEFLAGS
) "$$target-am" || exit
1; \
324 $(srcdir)/libiberty.texi \
325 $(srcdir)/copying-lib.texi \
326 $(srcdir)/obstacks.texi \
327 $(srcdir)/functions.texi
329 # Additional files that have texi snippets that need to be collected
330 # and sorted. Some are here because the sources are imported from
331 # elsewhere. Others represent headers in ../include.
332 TEXIFILES
= fnmatch.txh pexecute.txh
334 libiberty.
info : $(srcdir)/libiberty.texi
$(TEXISRC
)
335 $(MAKEINFO
) -I
$(srcdir) $(srcdir)/libiberty.texi
337 libiberty.
dvi : $(srcdir)/libiberty.texi
$(TEXISRC
)
338 texi2dvi $(srcdir)/libiberty.texi
340 libiberty.pdf
: $(srcdir)/libiberty.texi
$(TEXISRC
)
341 texi2pdf
$(srcdir)/libiberty.texi
343 libiberty.html
: $(srcdir)/libiberty.texi
$(TEXISRC
)
344 $(MAKEINFO
) --no-split
--html
-I
$(srcdir) -o
$@
$<
346 @MAINT@
$(srcdir)/functions.texi
: stamp-functions
349 @MAINT@stamp-functions
: $(CFILES
:%=$(srcdir)/%) $(TEXIFILES
:%=$(srcdir)/%) $(srcdir)/gather-docs Makefile
350 @MAINT@@HAVE_PERL@
$(PERL
) $(srcdir)/gather-docs
$(srcdir) $(srcdir)/functions.texi
$(CFILES
) $(TEXIFILES
)
351 @MAINT@ echo stamp
> stamp-functions
353 INSTALL_DEST
= @INSTALL_DEST@
354 install: install_to_
$(INSTALL_DEST
) install-subdir
356 # This is tricky. Even though CC in the Makefile contains
357 # multilib-specific flags, it's overridden by FLAGS_TO_PASS from the
358 # default multilib, so we have to take LIBCFLAGS into account as well,
359 # since it will be passed the multilib flags.
360 MULTIOSDIR
= `$(CC) $(LIBCFLAGS) -print-multi-os-directory`
361 install_to_libdir
: all
362 ${mkinstalldirs} $(DESTDIR
)$(libdir)/$(MULTIOSDIR
)
363 $(INSTALL_DATA
) $(TARGETLIB
) $(DESTDIR
)$(libdir)/$(MULTIOSDIR
)/$(TARGETLIB
)n
364 ( cd
$(DESTDIR
)$(libdir)/$(MULTIOSDIR
) ; chmod
644 $(TARGETLIB
)n
;$(RANLIB
) $(TARGETLIB
)n
)
365 mv
-f
$(DESTDIR
)$(libdir)/$(MULTIOSDIR
)/$(TARGETLIB
)n
$(DESTDIR
)$(libdir)/$(MULTIOSDIR
)/$(TARGETLIB
)
366 if
test -n
"${target_header_dir}"; then \
367 case
"${target_header_dir}" in \
368 /*) thd
=${target_header_dir};; \
369 *) thd
=${includedir}/${target_header_dir};; \
371 ${mkinstalldirs} $(DESTDIR
)$${thd}; \
372 for h in
${INSTALLED_HEADERS}; do \
373 ${INSTALL_DATA} $$h $(DESTDIR
)$${thd}; \
376 @
$(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
=install
378 install_to_tooldir
: all
379 ${mkinstalldirs} $(DESTDIR
)$(tooldir
)/lib
/$(MULTIOSDIR
)
380 $(INSTALL_DATA
) $(TARGETLIB
) $(DESTDIR
)$(tooldir
)/lib
/$(MULTIOSDIR
)/$(TARGETLIB
)n
381 ( cd
$(DESTDIR
)$(tooldir
)/lib
/$(MULTIOSDIR
) ; chmod
644 $(TARGETLIB
)n
; $(RANLIB
) $(TARGETLIB
)n
)
382 mv
-f
$(DESTDIR
)$(tooldir
)/lib
/$(MULTIOSDIR
)/$(TARGETLIB
)n
$(DESTDIR
)$(tooldir
)/lib
/$(MULTIOSDIR
)/$(TARGETLIB
)
383 @
$(MULTIDO
) $(FLAGS_TO_PASS
) multi-do DO
=install
385 # needed-list is used by libstdc++. NEEDED is the list of functions
386 # to include there. Do not add anything LGPL to this list; libstdc++
387 # can't use anything encumbering.
388 NEEDED
= atexit calloc memchr memcmp memcpy memmove memset rename strchr \
389 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf \
390 vfork waitpid bcmp bcopy bzero
391 needed-list
: Makefile
392 rm -f needed-list
; touch needed-list
; \
393 for f in
$(NEEDED
); do \
394 for g in
$(LIBOBJS
) $(EXTRA_OFILES
); do \
396 *$$f*) echo
$$g >> needed-list
;; \
401 # required-list was used when building a shared bfd/opcodes/libiberty
402 # library. I don't know if it used by anything currently.
403 required-list
: Makefile
404 echo
$(REQUIRED_OFILES
) > required-list
407 if
[ x
"$(PICFLAG)" != x
] && [ ! -d pic
]; then \
412 .PHONY
: all etags
tags ls
clean stage1 stage2
414 etags
tags: TAGS etags-subdir
417 etags
`for i in $(CFILES); do echo $(srcdir)/$$i ; done`
419 # The standalone demangler (c++filt) has been moved to binutils.
421 @echo
"The standalone demangler, now named c++filt, is now"
422 @echo
"a part of binutils."
426 @echo Makefile
$(CFILES
)
428 # Various targets for maintainers.
431 @
$(PERL
) $(srcdir)/maint-tool
-s
$(srcdir) missing
$(CFILES
) $(REQUIRED_OFILES
) $(CONFIGURED_OFILES
)
433 maint-buildall
: $(REQUIRED_OFILES
) $(CONFIGURED_OFILES
)
436 maint-undoc
: $(srcdir)/functions.texi
437 @
$(PERL
) $(srcdir)/maint-tool
-s
$(srcdir) undoc
440 @
$(PERL
) $(srcdir)/maint-tool
-s
$(srcdir) deps
$(INCDIR
)
442 # Need to deal with profiled libraries, too.
444 # Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS
445 # multiple times, hence our explicit recursion with an empty SUBDIRS.
446 mostlyclean: mostlyclean-subdir
447 -rm -rf
*.o pic core errs \
#* *.E a.out
448 -rm -f needed.awk needed2.awk errors dummy needed-list config.h stamp-
*
449 -rm -f
$(CONFIG_H
) $(NEEDED_LIST
) stamp-picdir
450 -rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky
451 -rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg
452 -rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr
454 @
$(MULTICLEAN
) multi-clean DO
=mostlyclean
456 $(MAKE
) SUBDIRS
="" mostlyclean
457 -rm -f
*.a required-list tmpmulti.out
458 -rm -f libiberty.
dvi libiberty.pdf libiberty.
info* libiberty.html
459 @
$(MULTICLEAN
) multi-clean DO
=clean
460 distclean: distclean-subdir
461 $(MAKE
) SUBDIRS
="" clean
462 @
$(MULTICLEAN
) multi-clean DO
=distclean
463 -rm -f
*~ Makefile config.cache config.status xhost-mkfrag TAGS multilib.out
465 -rmdir testsuite
2>/dev
/null
466 maintainer-clean
realclean: maintainer-clean-subdir
467 $(MAKE
) SUBDIRS
="" distclean
471 Makefile
: $(srcdir)/Makefile.in config.status
472 CONFIG_FILES
=Makefile CONFIG_HEADERS
= $(SHELL
) .
/config.status
474 # Depending on Makefile makes sure that config.status has been re-run
475 # if needed. This prevents problems with parallel builds.
476 config.h
: stamp-h
; @true
477 stamp-h
: $(srcdir)/config.in config.status Makefile
478 CONFIG_FILES
= CONFIG_HEADERS
=config.h
:$(srcdir)/config.in
$(SHELL
) .
/config.status
480 config.status
: $(srcdir)/configure
481 $(SHELL
) .
/config.status
--recheck
483 # Depending on config.h makes sure that config.status has been re-run
484 # if needed. This prevents problems with parallel builds, in case
485 # subdirectories need to run config.status also.
486 all-subdir check-subdir installcheck-subdir info-subdir \
487 install-info-subdir clean-info-subdir dvi-subdir pdf-subdir install-subdir \
488 etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
489 maintainer-clean-subdir
: config.h
490 @subdirs
='$(SUBDIRS)'; \
491 target
=`echo $@ | sed -e 's/-subdir//'`; \
492 for
dir in
$$subdirs ; do \
493 cd
$$dir && $(MAKE
) $(FLAGS_TO_PASS
) $$target; \
496 $(REQUIRED_OFILES
) $(EXTRA_OFILES
) $(LIBOBJS
): stamp-picdir
497 $(CONFIGURED_OFILES
): stamp-picdir
499 # Don't export variables to the environment, in order to not confuse
503 # The dependencies in the remainder of this file are automatically
504 # generated by "make maint-deps". Manual edits will be lost.
506 .
/_doprnt.o
: $(srcdir)/_doprnt.c config.h
$(INCDIR
)/ansidecl.h \
507 $(INCDIR
)/safe-ctype.h
508 if
[ x
"$(PICFLAG)" != x
]; then \
509 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/_doprnt.c
-o pic
/$@
; \
511 $(COMPILE.c
) $(srcdir)/_doprnt.c
$(OUTPUT_OPTION
)
513 .
/alloca.o
: $(srcdir)/alloca.c config.h
$(INCDIR
)/ansidecl.h \
514 $(INCDIR
)/libiberty.h
515 if
[ x
"$(PICFLAG)" != x
]; then \
516 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/alloca.c
-o pic
/$@
; \
518 $(COMPILE.c
) $(srcdir)/alloca.c
$(OUTPUT_OPTION
)
520 .
/argv.o
: $(srcdir)/argv.c config.h
$(INCDIR
)/ansidecl.h
$(INCDIR
)/libiberty.h \
521 $(INCDIR
)/safe-ctype.h
522 if
[ x
"$(PICFLAG)" != x
]; then \
523 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/argv.c
-o pic
/$@
; \
525 $(COMPILE.c
) $(srcdir)/argv.c
$(OUTPUT_OPTION
)
527 .
/asprintf.o
: $(srcdir)/asprintf.c config.h
$(INCDIR
)/ansidecl.h \
528 $(INCDIR
)/libiberty.h
529 if
[ x
"$(PICFLAG)" != x
]; then \
530 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/asprintf.c
-o pic
/$@
; \
532 $(COMPILE.c
) $(srcdir)/asprintf.c
$(OUTPUT_OPTION
)
534 .
/atexit.o
: $(srcdir)/atexit.c config.h
535 if
[ x
"$(PICFLAG)" != x
]; then \
536 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/atexit.c
-o pic
/$@
; \
538 $(COMPILE.c
) $(srcdir)/atexit.c
$(OUTPUT_OPTION
)
540 .
/basename.o
: $(srcdir)/basename.c config.h
$(INCDIR
)/ansidecl.h \
541 $(INCDIR
)/libiberty.h
$(INCDIR
)/safe-ctype.h
542 if
[ x
"$(PICFLAG)" != x
]; then \
543 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/basename.c
-o pic
/$@
; \
545 $(COMPILE.c
) $(srcdir)/basename.c
$(OUTPUT_OPTION
)
547 .
/bcmp.o
: $(srcdir)/bcmp.c
548 if
[ x
"$(PICFLAG)" != x
]; then \
549 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/bcmp.c
-o pic
/$@
; \
551 $(COMPILE.c
) $(srcdir)/bcmp.c
$(OUTPUT_OPTION
)
553 .
/bcopy.o
: $(srcdir)/bcopy.c
554 if
[ x
"$(PICFLAG)" != x
]; then \
555 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/bcopy.c
-o pic
/$@
; \
557 $(COMPILE.c
) $(srcdir)/bcopy.c
$(OUTPUT_OPTION
)
559 .
/bsearch.o
: $(srcdir)/bsearch.c config.h
$(INCDIR
)/ansidecl.h
560 if
[ x
"$(PICFLAG)" != x
]; then \
561 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/bsearch.c
-o pic
/$@
; \
563 $(COMPILE.c
) $(srcdir)/bsearch.c
$(OUTPUT_OPTION
)
565 .
/bzero.o
: $(srcdir)/bzero.c
566 if
[ x
"$(PICFLAG)" != x
]; then \
567 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/bzero.c
-o pic
/$@
; \
569 $(COMPILE.c
) $(srcdir)/bzero.c
$(OUTPUT_OPTION
)
571 .
/calloc.o
: $(srcdir)/calloc.c
$(INCDIR
)/ansidecl.h
572 if
[ x
"$(PICFLAG)" != x
]; then \
573 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/calloc.c
-o pic
/$@
; \
575 $(COMPILE.c
) $(srcdir)/calloc.c
$(OUTPUT_OPTION
)
577 .
/choose-temp.o
: $(srcdir)/choose-temp.c config.h
$(INCDIR
)/ansidecl.h \
578 $(INCDIR
)/libiberty.h
579 if
[ x
"$(PICFLAG)" != x
]; then \
580 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/choose-temp.c
-o pic
/$@
; \
582 $(COMPILE.c
) $(srcdir)/choose-temp.c
$(OUTPUT_OPTION
)
584 .
/clock.o
: $(srcdir)/clock.c config.h
585 if
[ x
"$(PICFLAG)" != x
]; then \
586 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/clock.c
-o pic
/$@
; \
588 $(COMPILE.c
) $(srcdir)/clock.c
$(OUTPUT_OPTION
)
590 .
/concat.o
: $(srcdir)/concat.c config.h
$(INCDIR
)/ansidecl.h \
591 $(INCDIR
)/libiberty.h
592 if
[ x
"$(PICFLAG)" != x
]; then \
593 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/concat.c
-o pic
/$@
; \
595 $(COMPILE.c
) $(srcdir)/concat.c
$(OUTPUT_OPTION
)
597 .
/copysign.o
: $(srcdir)/copysign.c
$(INCDIR
)/ansidecl.h
598 if
[ x
"$(PICFLAG)" != x
]; then \
599 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/copysign.c
-o pic
/$@
; \
601 $(COMPILE.c
) $(srcdir)/copysign.c
$(OUTPUT_OPTION
)
603 .
/cp-demangle.o
: $(srcdir)/cp-demangle.c config.h
$(INCDIR
)/ansidecl.h \
604 $(srcdir)/cp-demangle.h
$(INCDIR
)/demangle.h \
605 $(INCDIR
)/dyn-string.h
$(INCDIR
)/getopt.h
$(INCDIR
)/libiberty.h
606 if
[ x
"$(PICFLAG)" != x
]; then \
607 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/cp-demangle.c
-o pic
/$@
; \
609 $(COMPILE.c
) $(srcdir)/cp-demangle.c
$(OUTPUT_OPTION
)
611 .
/cp-demint.o
: $(srcdir)/cp-demint.c config.h
$(INCDIR
)/ansidecl.h \
612 $(srcdir)/cp-demangle.h
$(INCDIR
)/demangle.h \
613 $(INCDIR
)/libiberty.h
614 if
[ x
"$(PICFLAG)" != x
]; then \
615 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/cp-demint.c
-o pic
/$@
; \
617 $(COMPILE.c
) $(srcdir)/cp-demint.c
$(OUTPUT_OPTION
)
619 .
/cplus-dem.o
: $(srcdir)/cplus-dem.c config.h
$(INCDIR
)/ansidecl.h \
620 $(INCDIR
)/demangle.h
$(INCDIR
)/libiberty.h \
621 $(INCDIR
)/safe-ctype.h
622 if
[ x
"$(PICFLAG)" != x
]; then \
623 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/cplus-dem.c
-o pic
/$@
; \
625 $(COMPILE.c
) $(srcdir)/cplus-dem.c
$(OUTPUT_OPTION
)
627 .
/dyn-string.o
: $(srcdir)/dyn-string.c config.h
$(INCDIR
)/ansidecl.h \
628 $(INCDIR
)/dyn-string.h
$(INCDIR
)/libiberty.h
629 if
[ x
"$(PICFLAG)" != x
]; then \
630 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/dyn-string.c
-o pic
/$@
; \
632 $(COMPILE.c
) $(srcdir)/dyn-string.c
$(OUTPUT_OPTION
)
634 .
/fdmatch.o
: $(srcdir)/fdmatch.c config.h
$(INCDIR
)/ansidecl.h \
635 $(INCDIR
)/libiberty.h
636 if
[ x
"$(PICFLAG)" != x
]; then \
637 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/fdmatch.c
-o pic
/$@
; \
639 $(COMPILE.c
) $(srcdir)/fdmatch.c
$(OUTPUT_OPTION
)
641 .
/ffs.o
: $(srcdir)/ffs.c
642 if
[ x
"$(PICFLAG)" != x
]; then \
643 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/ffs.c
-o pic
/$@
; \
645 $(COMPILE.c
) $(srcdir)/ffs.c
$(OUTPUT_OPTION
)
647 .
/fibheap.o
: $(srcdir)/fibheap.c config.h
$(INCDIR
)/ansidecl.h \
648 $(INCDIR
)/fibheap.h
$(INCDIR
)/libiberty.h
649 if
[ x
"$(PICFLAG)" != x
]; then \
650 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/fibheap.c
-o pic
/$@
; \
652 $(COMPILE.c
) $(srcdir)/fibheap.c
$(OUTPUT_OPTION
)
654 .
/filename_cmp.o
: $(srcdir)/filename_cmp.c
$(INCDIR
)/filenames.h \
655 $(INCDIR
)/safe-ctype.h
656 if
[ x
"$(PICFLAG)" != x
]; then \
657 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/filename_cmp.c
-o pic
/$@
; \
659 $(COMPILE.c
) $(srcdir)/filename_cmp.c
$(OUTPUT_OPTION
)
661 .
/floatformat.o
: $(srcdir)/floatformat.c config.h
$(INCDIR
)/ansidecl.h \
662 $(INCDIR
)/floatformat.h
$(INCDIR
)/libiberty.h
663 if
[ x
"$(PICFLAG)" != x
]; then \
664 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/floatformat.c
-o pic
/$@
; \
666 $(COMPILE.c
) $(srcdir)/floatformat.c
$(OUTPUT_OPTION
)
668 .
/fnmatch.o
: $(srcdir)/fnmatch.c config.h
$(INCDIR
)/fnmatch.h \
669 $(INCDIR
)/safe-ctype.h
670 if
[ x
"$(PICFLAG)" != x
]; then \
671 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/fnmatch.c
-o pic
/$@
; \
673 $(COMPILE.c
) $(srcdir)/fnmatch.c
$(OUTPUT_OPTION
)
675 .
/fopen_unlocked.o
: $(srcdir)/fopen_unlocked.c config.h
$(INCDIR
)/ansidecl.h \
676 $(INCDIR
)/libiberty.h
677 if
[ x
"$(PICFLAG)" != x
]; then \
678 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/fopen_unlocked.c
-o pic
/$@
; \
680 $(COMPILE.c
) $(srcdir)/fopen_unlocked.c
$(OUTPUT_OPTION
)
682 .
/getcwd.o
: $(srcdir)/getcwd.c config.h
683 if
[ x
"$(PICFLAG)" != x
]; then \
684 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/getcwd.c
-o pic
/$@
; \
686 $(COMPILE.c
) $(srcdir)/getcwd.c
$(OUTPUT_OPTION
)
688 .
/getopt.o
: $(srcdir)/getopt.c config.h
$(INCDIR
)/ansidecl.h
$(INCDIR
)/getopt.h
689 if
[ x
"$(PICFLAG)" != x
]; then \
690 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/getopt.c
-o pic
/$@
; \
692 $(COMPILE.c
) $(srcdir)/getopt.c
$(OUTPUT_OPTION
)
694 .
/getopt1.o
: $(srcdir)/getopt1.c config.h
$(INCDIR
)/getopt.h
695 if
[ x
"$(PICFLAG)" != x
]; then \
696 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/getopt1.c
-o pic
/$@
; \
698 $(COMPILE.c
) $(srcdir)/getopt1.c
$(OUTPUT_OPTION
)
700 .
/getpagesize.o
: $(srcdir)/getpagesize.c config.h
701 if
[ x
"$(PICFLAG)" != x
]; then \
702 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/getpagesize.c
-o pic
/$@
; \
704 $(COMPILE.c
) $(srcdir)/getpagesize.c
$(OUTPUT_OPTION
)
706 .
/getpwd.o
: $(srcdir)/getpwd.c config.h
$(INCDIR
)/ansidecl.h \
707 $(INCDIR
)/libiberty.h
708 if
[ x
"$(PICFLAG)" != x
]; then \
709 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/getpwd.c
-o pic
/$@
; \
711 $(COMPILE.c
) $(srcdir)/getpwd.c
$(OUTPUT_OPTION
)
713 .
/getruntime.o
: $(srcdir)/getruntime.c config.h
$(INCDIR
)/ansidecl.h \
714 $(INCDIR
)/libiberty.h
715 if
[ x
"$(PICFLAG)" != x
]; then \
716 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/getruntime.c
-o pic
/$@
; \
718 $(COMPILE.c
) $(srcdir)/getruntime.c
$(OUTPUT_OPTION
)
720 .
/gettimeofday.o
: $(srcdir)/gettimeofday.c config.h
$(INCDIR
)/ansidecl.h \
721 $(INCDIR
)/libiberty.h
722 if
[ x
"$(PICFLAG)" != x
]; then \
723 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/gettimeofday.c
-o pic
/$@
; \
725 $(COMPILE.c
) $(srcdir)/gettimeofday.c
$(OUTPUT_OPTION
)
727 .
/hashtab.o
: $(srcdir)/hashtab.c config.h
$(INCDIR
)/ansidecl.h \
728 $(INCDIR
)/hashtab.h
$(INCDIR
)/libiberty.h
729 if
[ x
"$(PICFLAG)" != x
]; then \
730 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/hashtab.c
-o pic
/$@
; \
732 $(COMPILE.c
) $(srcdir)/hashtab.c
$(OUTPUT_OPTION
)
734 .
/hex.o
: $(srcdir)/hex.c config.h
$(INCDIR
)/ansidecl.h
$(INCDIR
)/libiberty.h \
735 $(INCDIR
)/safe-ctype.h
736 if
[ x
"$(PICFLAG)" != x
]; then \
737 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/hex.c
-o pic
/$@
; \
739 $(COMPILE.c
) $(srcdir)/hex.c
$(OUTPUT_OPTION
)
741 .
/index.o
: $(srcdir)/index.c
742 if
[ x
"$(PICFLAG)" != x
]; then \
743 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/index.c
-o pic
/$@
; \
745 $(COMPILE.c
) $(srcdir)/index.c
$(OUTPUT_OPTION
)
747 .
/insque.o
: $(srcdir)/insque.c
748 if
[ x
"$(PICFLAG)" != x
]; then \
749 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/insque.c
-o pic
/$@
; \
751 $(COMPILE.c
) $(srcdir)/insque.c
$(OUTPUT_OPTION
)
753 .
/lbasename.o
: $(srcdir)/lbasename.c config.h
$(INCDIR
)/ansidecl.h \
754 $(INCDIR
)/filenames.h
$(INCDIR
)/libiberty.h \
755 $(INCDIR
)/safe-ctype.h
756 if
[ x
"$(PICFLAG)" != x
]; then \
757 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/lbasename.c
-o pic
/$@
; \
759 $(COMPILE.c
) $(srcdir)/lbasename.c
$(OUTPUT_OPTION
)
761 .
/lrealpath.o
: $(srcdir)/lrealpath.c config.h
$(INCDIR
)/ansidecl.h \
762 $(INCDIR
)/libiberty.h
763 if
[ x
"$(PICFLAG)" != x
]; then \
764 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/lrealpath.c
-o pic
/$@
; \
766 $(COMPILE.c
) $(srcdir)/lrealpath.c
$(OUTPUT_OPTION
)
768 .
/make-relative-prefix.o
: $(srcdir)/make-relative-prefix.c config.h \
769 $(INCDIR
)/ansidecl.h
$(INCDIR
)/libiberty.h
770 if
[ x
"$(PICFLAG)" != x
]; then \
771 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/make-relative-prefix.c
-o pic
/$@
; \
773 $(COMPILE.c
) $(srcdir)/make-relative-prefix.c
$(OUTPUT_OPTION
)
775 .
/make-temp-file.o
: $(srcdir)/make-temp-file.c config.h
$(INCDIR
)/ansidecl.h \
776 $(INCDIR
)/libiberty.h
777 if
[ x
"$(PICFLAG)" != x
]; then \
778 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/make-temp-file.c
-o pic
/$@
; \
780 $(COMPILE.c
) $(srcdir)/make-temp-file.c
$(OUTPUT_OPTION
)
782 .
/md5.o
: $(srcdir)/md5.c config.h
$(INCDIR
)/ansidecl.h
$(INCDIR
)/md5.h
783 if
[ x
"$(PICFLAG)" != x
]; then \
784 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/md5.c
-o pic
/$@
; \
786 $(COMPILE.c
) $(srcdir)/md5.c
$(OUTPUT_OPTION
)
788 .
/memchr.o
: $(srcdir)/memchr.c
$(INCDIR
)/ansidecl.h
789 if
[ x
"$(PICFLAG)" != x
]; then \
790 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/memchr.c
-o pic
/$@
; \
792 $(COMPILE.c
) $(srcdir)/memchr.c
$(OUTPUT_OPTION
)
794 .
/memcmp.o
: $(srcdir)/memcmp.c
$(INCDIR
)/ansidecl.h
795 if
[ x
"$(PICFLAG)" != x
]; then \
796 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/memcmp.c
-o pic
/$@
; \
798 $(COMPILE.c
) $(srcdir)/memcmp.c
$(OUTPUT_OPTION
)
800 .
/memcpy.o
: $(srcdir)/memcpy.c
$(INCDIR
)/ansidecl.h
801 if
[ x
"$(PICFLAG)" != x
]; then \
802 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/memcpy.c
-o pic
/$@
; \
804 $(COMPILE.c
) $(srcdir)/memcpy.c
$(OUTPUT_OPTION
)
806 .
/memmove.o
: $(srcdir)/memmove.c
$(INCDIR
)/ansidecl.h
807 if
[ x
"$(PICFLAG)" != x
]; then \
808 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/memmove.c
-o pic
/$@
; \
810 $(COMPILE.c
) $(srcdir)/memmove.c
$(OUTPUT_OPTION
)
812 .
/mempcpy.o
: $(srcdir)/mempcpy.c
$(INCDIR
)/ansidecl.h
813 if
[ x
"$(PICFLAG)" != x
]; then \
814 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/mempcpy.c
-o pic
/$@
; \
816 $(COMPILE.c
) $(srcdir)/mempcpy.c
$(OUTPUT_OPTION
)
818 .
/memset.o
: $(srcdir)/memset.c
$(INCDIR
)/ansidecl.h
819 if
[ x
"$(PICFLAG)" != x
]; then \
820 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/memset.c
-o pic
/$@
; \
822 $(COMPILE.c
) $(srcdir)/memset.c
$(OUTPUT_OPTION
)
824 .
/mkstemps.o
: $(srcdir)/mkstemps.c config.h
$(INCDIR
)/ansidecl.h
825 if
[ x
"$(PICFLAG)" != x
]; then \
826 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/mkstemps.c
-o pic
/$@
; \
828 $(COMPILE.c
) $(srcdir)/mkstemps.c
$(OUTPUT_OPTION
)
830 .
/msdos.o
: $(srcdir)/msdos.c
831 if
[ x
"$(PICFLAG)" != x
]; then \
832 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/msdos.c
-o pic
/$@
; \
834 $(COMPILE.c
) $(srcdir)/msdos.c
$(OUTPUT_OPTION
)
836 .
/objalloc.o
: $(srcdir)/objalloc.c config.h
$(INCDIR
)/ansidecl.h \
838 if
[ x
"$(PICFLAG)" != x
]; then \
839 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/objalloc.c
-o pic
/$@
; \
841 $(COMPILE.c
) $(srcdir)/objalloc.c
$(OUTPUT_OPTION
)
843 .
/obstack.o
: $(srcdir)/obstack.c config.h
$(INCDIR
)/obstack.h
844 if
[ x
"$(PICFLAG)" != x
]; then \
845 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/obstack.c
-o pic
/$@
; \
847 $(COMPILE.c
) $(srcdir)/obstack.c
$(OUTPUT_OPTION
)
849 .
/partition.o
: $(srcdir)/partition.c config.h
$(INCDIR
)/ansidecl.h \
850 $(INCDIR
)/libiberty.h
$(INCDIR
)/partition.h
851 if
[ x
"$(PICFLAG)" != x
]; then \
852 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/partition.c
-o pic
/$@
; \
854 $(COMPILE.c
) $(srcdir)/partition.c
$(OUTPUT_OPTION
)
856 .
/pex-common.o
: $(srcdir)/pex-common.c config.h
$(INCDIR
)/ansidecl.h \
857 $(INCDIR
)/libiberty.h
$(srcdir)/pex-common.h
858 if
[ x
"$(PICFLAG)" != x
]; then \
859 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/pex-common.c
-o pic
/$@
; \
861 $(COMPILE.c
) $(srcdir)/pex-common.c
$(OUTPUT_OPTION
)
863 .
/pex-djgpp.o
: $(srcdir)/pex-djgpp.c config.h
$(INCDIR
)/ansidecl.h \
864 $(INCDIR
)/libiberty.h
$(srcdir)/pex-common.h
865 if
[ x
"$(PICFLAG)" != x
]; then \
866 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/pex-djgpp.c
-o pic
/$@
; \
868 $(COMPILE.c
) $(srcdir)/pex-djgpp.c
$(OUTPUT_OPTION
)
870 .
/pex-msdos.o
: $(srcdir)/pex-msdos.c config.h
$(INCDIR
)/ansidecl.h \
871 $(INCDIR
)/libiberty.h
$(srcdir)/pex-common.h \
872 $(INCDIR
)/safe-ctype.h
873 if
[ x
"$(PICFLAG)" != x
]; then \
874 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/pex-msdos.c
-o pic
/$@
; \
876 $(COMPILE.c
) $(srcdir)/pex-msdos.c
$(OUTPUT_OPTION
)
878 .
/pex-one.o
: $(srcdir)/pex-one.c config.h
$(INCDIR
)/ansidecl.h \
879 $(INCDIR
)/libiberty.h
880 if
[ x
"$(PICFLAG)" != x
]; then \
881 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/pex-one.c
-o pic
/$@
; \
883 $(COMPILE.c
) $(srcdir)/pex-one.c
$(OUTPUT_OPTION
)
885 .
/pex-unix.o
: $(srcdir)/pex-unix.c config.h
$(INCDIR
)/ansidecl.h \
886 $(INCDIR
)/libiberty.h
$(srcdir)/pex-common.h
887 if
[ x
"$(PICFLAG)" != x
]; then \
888 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/pex-unix.c
-o pic
/$@
; \
890 $(COMPILE.c
) $(srcdir)/pex-unix.c
$(OUTPUT_OPTION
)
892 .
/pex-win32.o
: $(srcdir)/pex-win32.c config.h
$(INCDIR
)/ansidecl.h \
893 $(INCDIR
)/libiberty.h
$(srcdir)/pex-common.h
894 if
[ x
"$(PICFLAG)" != x
]; then \
895 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/pex-win32.c
-o pic
/$@
; \
897 $(COMPILE.c
) $(srcdir)/pex-win32.c
$(OUTPUT_OPTION
)
899 .
/pexecute.o
: $(srcdir)/pexecute.c config.h
$(INCDIR
)/ansidecl.h \
900 $(INCDIR
)/libiberty.h
901 if
[ x
"$(PICFLAG)" != x
]; then \
902 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/pexecute.c
-o pic
/$@
; \
904 $(COMPILE.c
) $(srcdir)/pexecute.c
$(OUTPUT_OPTION
)
906 .
/physmem.o
: $(srcdir)/physmem.c config.h
$(INCDIR
)/ansidecl.h \
907 $(INCDIR
)/libiberty.h
908 if
[ x
"$(PICFLAG)" != x
]; then \
909 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/physmem.c
-o pic
/$@
; \
911 $(COMPILE.c
) $(srcdir)/physmem.c
$(OUTPUT_OPTION
)
913 .
/putenv.o
: $(srcdir)/putenv.c config.h
$(INCDIR
)/ansidecl.h
914 if
[ x
"$(PICFLAG)" != x
]; then \
915 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/putenv.c
-o pic
/$@
; \
917 $(COMPILE.c
) $(srcdir)/putenv.c
$(OUTPUT_OPTION
)
919 .
/random.o
: $(srcdir)/random.c
$(INCDIR
)/ansidecl.h
920 if
[ x
"$(PICFLAG)" != x
]; then \
921 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/random.c
-o pic
/$@
; \
923 $(COMPILE.c
) $(srcdir)/random.c
$(OUTPUT_OPTION
)
925 .
/regex.o
: $(srcdir)/regex.c config.h
$(INCDIR
)/ansidecl.h
$(INCDIR
)/xregex.h \
927 if
[ x
"$(PICFLAG)" != x
]; then \
928 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/regex.c
-o pic
/$@
; \
930 $(COMPILE.c
) $(srcdir)/regex.c
$(OUTPUT_OPTION
)
932 .
/rename.o
: $(srcdir)/rename.c config.h
$(INCDIR
)/ansidecl.h
933 if
[ x
"$(PICFLAG)" != x
]; then \
934 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/rename.c
-o pic
/$@
; \
936 $(COMPILE.c
) $(srcdir)/rename.c
$(OUTPUT_OPTION
)
938 .
/rindex.o
: $(srcdir)/rindex.c
939 if
[ x
"$(PICFLAG)" != x
]; then \
940 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/rindex.c
-o pic
/$@
; \
942 $(COMPILE.c
) $(srcdir)/rindex.c
$(OUTPUT_OPTION
)
944 .
/safe-ctype.o
: $(srcdir)/safe-ctype.c
$(INCDIR
)/ansidecl.h \
945 $(INCDIR
)/safe-ctype.h
946 if
[ x
"$(PICFLAG)" != x
]; then \
947 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/safe-ctype.c
-o pic
/$@
; \
949 $(COMPILE.c
) $(srcdir)/safe-ctype.c
$(OUTPUT_OPTION
)
951 .
/setenv.o
: $(srcdir)/setenv.c config.h
$(INCDIR
)/ansidecl.h
952 if
[ x
"$(PICFLAG)" != x
]; then \
953 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/setenv.c
-o pic
/$@
; \
955 $(COMPILE.c
) $(srcdir)/setenv.c
$(OUTPUT_OPTION
)
957 .
/sigsetmask.o
: $(srcdir)/sigsetmask.c
$(INCDIR
)/ansidecl.h
958 if
[ x
"$(PICFLAG)" != x
]; then \
959 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/sigsetmask.c
-o pic
/$@
; \
961 $(COMPILE.c
) $(srcdir)/sigsetmask.c
$(OUTPUT_OPTION
)
963 .
/snprintf.o
: $(srcdir)/snprintf.c
$(INCDIR
)/ansidecl.h
964 if
[ x
"$(PICFLAG)" != x
]; then \
965 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/snprintf.c
-o pic
/$@
; \
967 $(COMPILE.c
) $(srcdir)/snprintf.c
$(OUTPUT_OPTION
)
969 .
/sort.o
: $(srcdir)/sort.c config.h
$(INCDIR
)/ansidecl.h
$(INCDIR
)/libiberty.h \
971 if
[ x
"$(PICFLAG)" != x
]; then \
972 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/sort.c
-o pic
/$@
; \
974 $(COMPILE.c
) $(srcdir)/sort.c
$(OUTPUT_OPTION
)
976 .
/spaces.o
: $(srcdir)/spaces.c config.h
$(INCDIR
)/ansidecl.h \
977 $(INCDIR
)/libiberty.h
978 if
[ x
"$(PICFLAG)" != x
]; then \
979 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/spaces.c
-o pic
/$@
; \
981 $(COMPILE.c
) $(srcdir)/spaces.c
$(OUTPUT_OPTION
)
983 .
/splay-tree.o
: $(srcdir)/splay-tree.c config.h
$(INCDIR
)/ansidecl.h \
984 $(INCDIR
)/libiberty.h
$(INCDIR
)/splay-tree.h
985 if
[ x
"$(PICFLAG)" != x
]; then \
986 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/splay-tree.c
-o pic
/$@
; \
988 $(COMPILE.c
) $(srcdir)/splay-tree.c
$(OUTPUT_OPTION
)
990 .
/stpcpy.o
: $(srcdir)/stpcpy.c
$(INCDIR
)/ansidecl.h
991 if
[ x
"$(PICFLAG)" != x
]; then \
992 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/stpcpy.c
-o pic
/$@
; \
994 $(COMPILE.c
) $(srcdir)/stpcpy.c
$(OUTPUT_OPTION
)
996 .
/stpncpy.o
: $(srcdir)/stpncpy.c
$(INCDIR
)/ansidecl.h
997 if
[ x
"$(PICFLAG)" != x
]; then \
998 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/stpncpy.c
-o pic
/$@
; \
1000 $(COMPILE.c
) $(srcdir)/stpncpy.c
$(OUTPUT_OPTION
)
1002 .
/strcasecmp.o
: $(srcdir)/strcasecmp.c
$(INCDIR
)/ansidecl.h
1003 if
[ x
"$(PICFLAG)" != x
]; then \
1004 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strcasecmp.c
-o pic
/$@
; \
1006 $(COMPILE.c
) $(srcdir)/strcasecmp.c
$(OUTPUT_OPTION
)
1008 .
/strchr.o
: $(srcdir)/strchr.c
$(INCDIR
)/ansidecl.h
1009 if
[ x
"$(PICFLAG)" != x
]; then \
1010 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strchr.c
-o pic
/$@
; \
1012 $(COMPILE.c
) $(srcdir)/strchr.c
$(OUTPUT_OPTION
)
1014 .
/strdup.o
: $(srcdir)/strdup.c
$(INCDIR
)/ansidecl.h
1015 if
[ x
"$(PICFLAG)" != x
]; then \
1016 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strdup.c
-o pic
/$@
; \
1018 $(COMPILE.c
) $(srcdir)/strdup.c
$(OUTPUT_OPTION
)
1020 .
/strerror.o
: $(srcdir)/strerror.c config.h
$(INCDIR
)/ansidecl.h \
1021 $(INCDIR
)/libiberty.h
1022 if
[ x
"$(PICFLAG)" != x
]; then \
1023 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strerror.c
-o pic
/$@
; \
1025 $(COMPILE.c
) $(srcdir)/strerror.c
$(OUTPUT_OPTION
)
1027 .
/strncasecmp.o
: $(srcdir)/strncasecmp.c
$(INCDIR
)/ansidecl.h
1028 if
[ x
"$(PICFLAG)" != x
]; then \
1029 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strncasecmp.c
-o pic
/$@
; \
1031 $(COMPILE.c
) $(srcdir)/strncasecmp.c
$(OUTPUT_OPTION
)
1033 .
/strncmp.o
: $(srcdir)/strncmp.c
$(INCDIR
)/ansidecl.h
1034 if
[ x
"$(PICFLAG)" != x
]; then \
1035 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strncmp.c
-o pic
/$@
; \
1037 $(COMPILE.c
) $(srcdir)/strncmp.c
$(OUTPUT_OPTION
)
1039 .
/strndup.o
: $(srcdir)/strndup.c
$(INCDIR
)/ansidecl.h
1040 if
[ x
"$(PICFLAG)" != x
]; then \
1041 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strndup.c
-o pic
/$@
; \
1043 $(COMPILE.c
) $(srcdir)/strndup.c
$(OUTPUT_OPTION
)
1045 .
/strrchr.o
: $(srcdir)/strrchr.c
$(INCDIR
)/ansidecl.h
1046 if
[ x
"$(PICFLAG)" != x
]; then \
1047 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strrchr.c
-o pic
/$@
; \
1049 $(COMPILE.c
) $(srcdir)/strrchr.c
$(OUTPUT_OPTION
)
1051 .
/strsignal.o
: $(srcdir)/strsignal.c config.h
$(INCDIR
)/ansidecl.h \
1052 $(INCDIR
)/libiberty.h
1053 if
[ x
"$(PICFLAG)" != x
]; then \
1054 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strsignal.c
-o pic
/$@
; \
1056 $(COMPILE.c
) $(srcdir)/strsignal.c
$(OUTPUT_OPTION
)
1058 .
/strstr.o
: $(srcdir)/strstr.c
1059 if
[ x
"$(PICFLAG)" != x
]; then \
1060 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strstr.c
-o pic
/$@
; \
1062 $(COMPILE.c
) $(srcdir)/strstr.c
$(OUTPUT_OPTION
)
1064 .
/strtod.o
: $(srcdir)/strtod.c
$(INCDIR
)/ansidecl.h
$(INCDIR
)/safe-ctype.h
1065 if
[ x
"$(PICFLAG)" != x
]; then \
1066 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strtod.c
-o pic
/$@
; \
1068 $(COMPILE.c
) $(srcdir)/strtod.c
$(OUTPUT_OPTION
)
1070 .
/strtol.o
: $(srcdir)/strtol.c config.h
$(INCDIR
)/safe-ctype.h
1071 if
[ x
"$(PICFLAG)" != x
]; then \
1072 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strtol.c
-o pic
/$@
; \
1074 $(COMPILE.c
) $(srcdir)/strtol.c
$(OUTPUT_OPTION
)
1076 .
/strtoul.o
: $(srcdir)/strtoul.c config.h
$(INCDIR
)/ansidecl.h \
1077 $(INCDIR
)/safe-ctype.h
1078 if
[ x
"$(PICFLAG)" != x
]; then \
1079 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strtoul.c
-o pic
/$@
; \
1081 $(COMPILE.c
) $(srcdir)/strtoul.c
$(OUTPUT_OPTION
)
1083 .
/strverscmp.o
: $(srcdir)/strverscmp.c
$(INCDIR
)/ansidecl.h
$(INCDIR
)/libiberty.h \
1084 $(INCDIR
)/safe-ctype.h
1085 if
[ x
"$(PICFLAG)" != x
]; then \
1086 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/strverscmp.c
-o pic
/$@
; \
1088 $(COMPILE.c
) $(srcdir)/strverscmp.c
$(OUTPUT_OPTION
)
1090 .
/ternary.o
: $(srcdir)/ternary.c config.h
$(INCDIR
)/ansidecl.h \
1091 $(INCDIR
)/libiberty.h
$(INCDIR
)/ternary.h
1092 if
[ x
"$(PICFLAG)" != x
]; then \
1093 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/ternary.c
-o pic
/$@
; \
1095 $(COMPILE.c
) $(srcdir)/ternary.c
$(OUTPUT_OPTION
)
1097 .
/tmpnam.o
: $(srcdir)/tmpnam.c
1098 if
[ x
"$(PICFLAG)" != x
]; then \
1099 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/tmpnam.c
-o pic
/$@
; \
1101 $(COMPILE.c
) $(srcdir)/tmpnam.c
$(OUTPUT_OPTION
)
1103 .
/unlink-if-ordinary.o
: $(srcdir)/unlink-if-ordinary.c config.h \
1104 $(INCDIR
)/ansidecl.h
$(INCDIR
)/libiberty.h
1105 if
[ x
"$(PICFLAG)" != x
]; then \
1106 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/unlink-if-ordinary.c
-o pic
/$@
; \
1108 $(COMPILE.c
) $(srcdir)/unlink-if-ordinary.c
$(OUTPUT_OPTION
)
1110 .
/vasprintf.o
: $(srcdir)/vasprintf.c config.h
$(INCDIR
)/ansidecl.h \
1111 $(INCDIR
)/libiberty.h
1112 if
[ x
"$(PICFLAG)" != x
]; then \
1113 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/vasprintf.c
-o pic
/$@
; \
1115 $(COMPILE.c
) $(srcdir)/vasprintf.c
$(OUTPUT_OPTION
)
1117 .
/vfork.o
: $(srcdir)/vfork.c
$(INCDIR
)/ansidecl.h
1118 if
[ x
"$(PICFLAG)" != x
]; then \
1119 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/vfork.c
-o pic
/$@
; \
1121 $(COMPILE.c
) $(srcdir)/vfork.c
$(OUTPUT_OPTION
)
1123 .
/vfprintf.o
: $(srcdir)/vfprintf.c
$(INCDIR
)/ansidecl.h
1124 if
[ x
"$(PICFLAG)" != x
]; then \
1125 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/vfprintf.c
-o pic
/$@
; \
1127 $(COMPILE.c
) $(srcdir)/vfprintf.c
$(OUTPUT_OPTION
)
1129 .
/vprintf.o
: $(srcdir)/vprintf.c
$(INCDIR
)/ansidecl.h
1130 if
[ x
"$(PICFLAG)" != x
]; then \
1131 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/vprintf.c
-o pic
/$@
; \
1133 $(COMPILE.c
) $(srcdir)/vprintf.c
$(OUTPUT_OPTION
)
1135 .
/vsnprintf.o
: $(srcdir)/vsnprintf.c config.h
$(INCDIR
)/ansidecl.h \
1136 $(INCDIR
)/libiberty.h
1137 if
[ x
"$(PICFLAG)" != x
]; then \
1138 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/vsnprintf.c
-o pic
/$@
; \
1140 $(COMPILE.c
) $(srcdir)/vsnprintf.c
$(OUTPUT_OPTION
)
1142 .
/vsprintf.o
: $(srcdir)/vsprintf.c
$(INCDIR
)/ansidecl.h
1143 if
[ x
"$(PICFLAG)" != x
]; then \
1144 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/vsprintf.c
-o pic
/$@
; \
1146 $(COMPILE.c
) $(srcdir)/vsprintf.c
$(OUTPUT_OPTION
)
1148 .
/waitpid.o
: $(srcdir)/waitpid.c config.h
$(INCDIR
)/ansidecl.h
1149 if
[ x
"$(PICFLAG)" != x
]; then \
1150 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/waitpid.c
-o pic
/$@
; \
1152 $(COMPILE.c
) $(srcdir)/waitpid.c
$(OUTPUT_OPTION
)
1154 .
/xatexit.o
: $(srcdir)/xatexit.c config.h
$(INCDIR
)/ansidecl.h \
1155 $(INCDIR
)/libiberty.h
1156 if
[ x
"$(PICFLAG)" != x
]; then \
1157 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/xatexit.c
-o pic
/$@
; \
1159 $(COMPILE.c
) $(srcdir)/xatexit.c
$(OUTPUT_OPTION
)
1161 .
/xexit.o
: $(srcdir)/xexit.c config.h
$(INCDIR
)/ansidecl.h
$(INCDIR
)/libiberty.h
1162 if
[ x
"$(PICFLAG)" != x
]; then \
1163 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/xexit.c
-o pic
/$@
; \
1165 $(COMPILE.c
) $(srcdir)/xexit.c
$(OUTPUT_OPTION
)
1167 .
/xmalloc.o
: $(srcdir)/xmalloc.c config.h
$(INCDIR
)/ansidecl.h \
1168 $(INCDIR
)/libiberty.h
1169 if
[ x
"$(PICFLAG)" != x
]; then \
1170 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/xmalloc.c
-o pic
/$@
; \
1172 $(COMPILE.c
) $(srcdir)/xmalloc.c
$(OUTPUT_OPTION
)
1174 .
/xmemdup.o
: $(srcdir)/xmemdup.c config.h
$(INCDIR
)/ansidecl.h \
1175 $(INCDIR
)/libiberty.h
1176 if
[ x
"$(PICFLAG)" != x
]; then \
1177 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/xmemdup.c
-o pic
/$@
; \
1179 $(COMPILE.c
) $(srcdir)/xmemdup.c
$(OUTPUT_OPTION
)
1181 .
/xstrdup.o
: $(srcdir)/xstrdup.c config.h
$(INCDIR
)/ansidecl.h \
1182 $(INCDIR
)/libiberty.h
1183 if
[ x
"$(PICFLAG)" != x
]; then \
1184 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/xstrdup.c
-o pic
/$@
; \
1186 $(COMPILE.c
) $(srcdir)/xstrdup.c
$(OUTPUT_OPTION
)
1188 .
/xstrerror.o
: $(srcdir)/xstrerror.c config.h
$(INCDIR
)/ansidecl.h \
1189 $(INCDIR
)/libiberty.h
1190 if
[ x
"$(PICFLAG)" != x
]; then \
1191 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/xstrerror.c
-o pic
/$@
; \
1193 $(COMPILE.c
) $(srcdir)/xstrerror.c
$(OUTPUT_OPTION
)
1195 .
/xstrndup.o
: $(srcdir)/xstrndup.c config.h
$(INCDIR
)/ansidecl.h \
1196 $(INCDIR
)/libiberty.h
1197 if
[ x
"$(PICFLAG)" != x
]; then \
1198 $(COMPILE.c
) $(PICFLAG
) $(srcdir)/xstrndup.c
-o pic
/$@
; \
1200 $(COMPILE.c
) $(srcdir)/xstrndup.c
$(OUTPUT_OPTION
)