/[gcl]/gcl/binutils/libiberty/Makefile.in
ViewVC logotype

Diff of /gcl/binutils/libiberty/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by camm, Fri Aug 9 14:25:20 2002 UTC revision 1.2.20.1 by camm, Fri Sep 30 02:10:42 2005 UTC
# Line 1  Line 1 
1  #  #
2  # Makefile  # Makefile
3  #   Copyright (C) 1990, 91-99, 2000, 2001, 2002  #   Copyright (C) 1990, 91-99, 2000, 2001, 2002, 2003, 2004
4  #   Free Software Foundation  #   Free Software Foundation
5  #  #
6  # This file is part of the libiberty library.  # This file is part of the libiberty library.
# Line 26  Line 26 
26  # Makefile for libiberty directory  # Makefile for libiberty directory
27  #  #
28    
29    libiberty_topdir = @libiberty_topdir@
30  srcdir = @srcdir@  srcdir = @srcdir@
 VPATH = @srcdir@  
31    
32  prefix = @prefix@  prefix = @prefix@
33    
# Line 50  MULTICLEAN = true Line 50  MULTICLEAN = true
50  INSTALL = @INSTALL@  INSTALL = @INSTALL@
51  INSTALL_PROGRAM = @INSTALL_PROGRAM@  INSTALL_PROGRAM = @INSTALL_PROGRAM@
52  INSTALL_DATA = @INSTALL_DATA@  INSTALL_DATA = @INSTALL_DATA@
53  mkinstalldirs = $(SHELL) $(srcdir)/../mkinstalldirs  mkinstalldirs = $(SHELL) $(libiberty_topdir)/mkinstalldirs
54    
55  # Some compilers can't handle cc -c blah.c -o foo/blah.o.  # Some compilers can't handle cc -c blah.c -o foo/blah.o.
56  OUTPUT_OPTION = @OUTPUT_OPTION@  OUTPUT_OPTION = @OUTPUT_OPTION@
# Line 61  AR_FLAGS = rc Line 61  AR_FLAGS = rc
61  CC = @CC@  CC = @CC@
62  CFLAGS = @CFLAGS@  CFLAGS = @CFLAGS@
63  LIBCFLAGS = $(CFLAGS)  LIBCFLAGS = $(CFLAGS)
 LOADLIBES = @LIBS@  
64  RANLIB = @RANLIB@  RANLIB = @RANLIB@
65  MAKEINFO = @MAKEINFO@  MAKEINFO = @MAKEINFO@
66  PERL = @PERL@  PERL = @PERL@
# Line 70  PICFLAG = Line 69  PICFLAG =
69    
70  MAKEOVERRIDES =  MAKEOVERRIDES =
71    
72  TARGETLIB = libiberty.a  TARGETLIB = ./libiberty.a
73  TESTLIB = testlib.a  TESTLIB = ./testlib.a
74    
75  LIBOBJS = @LIBOBJS@  LIBOBJS = @LIBOBJS@
76    
# Line 85  FLAGS_TO_PASS = \ Line 84  FLAGS_TO_PASS = \
84          "AR_FLAGS=$(AR_FLAGS)" \          "AR_FLAGS=$(AR_FLAGS)" \
85          "CC=$(CC)" \          "CC=$(CC)" \
86          "CFLAGS=$(CFLAGS)" \          "CFLAGS=$(CFLAGS)" \
87            "DESTDIR=$(DESTDIR)" \
88          "LIBCFLAGS=$(LIBCFLAGS)" \          "LIBCFLAGS=$(LIBCFLAGS)" \
89          "EXTRA_OFILES=$(EXTRA_OFILES)" \          "EXTRA_OFILES=$(EXTRA_OFILES)" \
90          "HDEFINES=$(HDEFINES)" \          "HDEFINES=$(HDEFINES)" \
# Line 106  SUBDIRS = testsuite Line 106  SUBDIRS = testsuite
106    
107  # FIXME: add @BUILD_INFO@ once we're sure it works for everyone.  # FIXME: add @BUILD_INFO@ once we're sure it works for everyone.
108  all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir  all: stamp-picdir $(TARGETLIB) needed-list required-list all-subdir
109          @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all          @: $(MAKE) ; exec $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
110    
111  .PHONY: check installcheck  .PHONY: check installcheck
112  check: check-subdir  check: check-subdir
# Line 117  installcheck: installcheck-subdir Line 117  installcheck: installcheck-subdir
117  INCDIR=$(srcdir)/$(MULTISRCTOP)../include  INCDIR=$(srcdir)/$(MULTISRCTOP)../include
118    
119  COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@  COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
120    
121    # Just to make sure we don't use a built-in rule with VPATH
122  .c.o:  .c.o:
123          if [ x"$(PICFLAG)" != x ]; then \          false
           $(COMPILE.c) $(PICFLAG) $< -o pic/$@; \  
         else true; fi  
         $(COMPILE.c) $< $(OUTPUT_OPTION)  
124    
125  # NOTE: If you add new files to the library, add them to this list  # NOTE: If you add new files to the library, add them to this list
126  # (alphabetical), and add them to REQUIRED_OFILES, or  # (alphabetical), and add them to REQUIRED_OFILES, or
127  # CONFIGURED_OFILES and funcs in configure.in.  # 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                            \  CFILES = alloca.c argv.c asprintf.c atexit.c                            \
130          basename.c bcmp.c bcopy.c bsearch.c bzero.c                     \          basename.c bcmp.c bcopy.c bsearch.c bzero.c                     \
131          calloc.c choose-temp.c clock.c concat.c cp-demangle.c           \          calloc.c choose-temp.c clock.c concat.c cp-demangle.c           \
132           cplus-dem.c                                                    \           cp-demint.c cplus-dem.c                                        \
133          dyn-string.c                                                    \          dyn-string.c                                                    \
134          fdmatch.c ffs.c fibheap.c floatformat.c fnmatch.c               \          fdmatch.c ffs.c fibheap.c floatformat.c fnmatch.c               \
135          getcwd.c getopt.c getopt1.c getpagesize.c getpwd.c getruntime.c \          getcwd.c getopt.c getopt1.c getpagesize.c getpwd.c getruntime.c \
136          hashtab.c hex.c                                                 \          hashtab.c hex.c                                                 \
137          index.c insque.c                                                \          index.c insque.c                                                \
138          lbasename.c                                                     \          lbasename.c                                                     \
139            lrealpath.c                                                     \
140            make-relative-prefix.c                                          \
141          make-temp-file.c md5.c memchr.c memcmp.c memcpy.c memmove.c     \          make-temp-file.c md5.c memchr.c memcmp.c memcpy.c memmove.c     \
142           memset.c mkstemps.c                                            \           mempcpy.c memset.c mkstemps.c                                  \
143          objalloc.c obstack.c                                            \          objalloc.c obstack.c                                            \
144          partition.c pexecute.c putenv.c                                 \          partition.c                                                     \
145             pex-djgpp.c pex-msdos.c pex-os2.c                              \
146             pex-unix.c pex-win32.c                                         \
147             physmem.c putenv.c                                             \
148          random.c regex.c rename.c rindex.c                              \          random.c regex.c rename.c rindex.c                              \
149          safe-ctype.c setenv.c sigsetmask.c sort.c spaces.c              \          safe-ctype.c setenv.c sigsetmask.c snprintf.c sort.c spaces.c   \
150           splay-tree.c strcasecmp.c strchr.c strdup.c strerror.c         \           splay-tree.c stpcpy.c stpncpy.c strcasecmp.c strchr.c strdup.c \
151           strncasecmp.c strncmp.c strrchr.c strsignal.c strstr.c         \           strerror.c strncasecmp.c strncmp.c strrchr.c strsignal.c       \
152           strtod.c strtol.c strtoul.c                                    \           strstr.c strtod.c strtol.c strtoul.c                           \
153          ternary.c tmpnam.c                                              \          ternary.c tmpnam.c                                              \
154          vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c             \          unlink-if-ordinary.c                                            \
155            vasprintf.c vfork.c vfprintf.c vprintf.c vsnprintf.c vsprintf.c \
156          waitpid.c                                                       \          waitpid.c                                                       \
157          xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c xstrerror.c          xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c xstrerror.c
158    
159  # These are always included in the library.  The first four are listed  # These are always included in the library.  The first four are listed
160  # first and by compile time to optimize parallel builds.  # first and by compile time to optimize parallel builds.
161  REQUIRED_OFILES = regex.o cplus-dem.o cp-demangle.o md5.o               \  REQUIRED_OFILES = ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o       \
162          alloca.o argv.o                                                 \          ./alloca.o ./argv.o                                             \
163          choose-temp.o concat.o                                          \          ./choose-temp.o ./concat.o ./cp-demint.o                        \
164          dyn-string.o                                                    \          ./dyn-string.o                                                  \
165          fdmatch.o fibheap.o floatformat.o fnmatch.o                     \          ./fdmatch.o ./fibheap.o ./floatformat.o ./fnmatch.o             \
166          getopt.o getopt1.o getpwd.o getruntime.o                        \          ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o                \
167          hashtab.o hex.o                                                 \          ./hashtab.o ./hex.o                                             \
168          lbasename.o                                                     \          ./lbasename.o ./lrealpath.o                                     \
169          make-temp-file.o                                                \          ./make-relative-prefix.o ./make-temp-file.o                     \
170          objalloc.o obstack.o                                            \          ./objalloc.o ./obstack.o                                        \
171          partition.o pexecute.o                                          \          ./partition.o ./physmem.o @pexecute@                            \
172          safe-ctype.o sort.o spaces.o splay-tree.o strerror.o            \          ./safe-ctype.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o  \
173           strsignal.o                                                    \           ./strsignal.o                                                  \
174          ternary.o                                                       \          ./ternary.o                                                     \
175          xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o          ./unlink-if-ordinary.o                                          \
176            ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o       \
177             ./xstrerror.o
178    
179  # These are all the objects that configure may add to the library via  # These are all the objects that configure may add to the library via
180  # $funcs or EXTRA_OFILES.  This list exists here only for "make  # $funcs or EXTRA_OFILES.  This list exists here only for "make
181  # maint-missing" and "make check".  # maint-missing" and "make check".
182  CONFIGURED_OFILES = asprintf.o atexit.o                                 \  CONFIGURED_OFILES = ./asprintf.o ./atexit.o                             \
183          basename.o bcmp.o bcopy.o bsearch.o bzero.o                     \          ./basename.o ./bcmp.o ./bcopy.o ./bsearch.o ./bzero.o           \
184          calloc.o clock.o copysign.o                                     \          ./calloc.o ./clock.o ./copysign.o                               \
185          _doprnt.o                                                       \          ./_doprnt.o                                                     \
186          ffs.o                                                           \          ./ffs.o                                                         \
187          getcwd.o getpagesize.o                                          \          ./getcwd.o ./getpagesize.o                                      \
188          index.o insque.o                                                \          ./index.o ./insque.o                                            \
189          memchr.o memcmp.o memcpy.o memmove.o memset.o mkstemps.o        \          ./memchr.o ./memcmp.o ./memcpy.o ./memmove.o ./mempcpy.o        \
190          putenv.o                                                        \           ./memset.o ./mkstemps.o                                        \
191          random.o rename.o rindex.o                                      \          ./pex-djgpp.o ./pex-msdos.o ./pex-os2.o                 \
192          setenv.o sigsetmask.o strcasecmp.o strchr.o strdup.o            \           ./pex-unix.o ./pex-win32.o                                     \
193           strncasecmp.o strncmp.o strrchr.o strstr.o strtod.o strtol.o   \           ./putenv.o                                                     \
194           strtoul.o                                                      \          ./random.o ./rename.o ./rindex.o                                \
195          tmpnam.o                                                        \          ./setenv.o ./sigsetmask.o ./snprintf.o ./stpcpy.o ./stpncpy.o   \
196          vasprintf.o vfork.o vfprintf.o vprintf.o vsprintf.o             \           ./strcasecmp.o ./strchr.o ./strdup.o ./strncasecmp.o           \
197          waitpid.o           ./strncmp.o ./strrchr.o ./strstr.o                             \
198             ./strtod.o ./strtol.o ./strtoul.o                              \
199            ./tmpnam.o                                                      \
200            ./vasprintf.o ./vfork.o ./vfprintf.o ./vprintf.o ./vsnprintf.o  \
201             ./vsprintf.o                                                   \
202            ./waitpid.o
203    
204  # These files are installed if the library has been configured to do so.  # These files are installed if the library has been configured to do so.
205  INSTALLED_HEADERS =                                                     \  INSTALLED_HEADERS =                                                     \
# Line 238  TEXISRC = \ Line 251  TEXISRC = \
251  # Additional files that have texi snippets that need to be collected  # Additional files that have texi snippets that need to be collected
252  # and sorted.  Some are here because the sources are imported from  # and sorted.  Some are here because the sources are imported from
253  # elsewhere.  Others represent headers in ../include.  # elsewhere.  Others represent headers in ../include.
254  TEXIFILES = fnmatch.txh  TEXIFILES = fnmatch.txh pexecute.txh
255    
256  libiberty.info : $(srcdir)/libiberty.texi $(TEXISRC)  libiberty.info : $(srcdir)/libiberty.texi $(TEXISRC)
257          $(MAKEINFO) -I$(srcdir) $(srcdir)/libiberty.texi          $(MAKEINFO) -I$(srcdir) $(srcdir)/libiberty.texi
# Line 247  libiberty.dvi : $(srcdir)/libiberty.texi Line 260  libiberty.dvi : $(srcdir)/libiberty.texi
260          texi2dvi $(srcdir)/libiberty.texi          texi2dvi $(srcdir)/libiberty.texi
261    
262  libiberty.html : $(srcdir)/libiberty.texi $(TEXISRC)  libiberty.html : $(srcdir)/libiberty.texi $(TEXISRC)
263          $(MAKEINFO) --html -I$(srcdir) $(srcdir)/libiberty.texi          $(MAKEINFO) --no-split --html -I$(srcdir) -o $@ $<
264    
265  @MAINT@$(srcdir)/functions.texi : stamp-functions  @MAINT@$(srcdir)/functions.texi : stamp-functions
266  @MAINT@ @true  @MAINT@ @true
# Line 260  INSTALL_DEST = @INSTALL_DEST@ Line 273  INSTALL_DEST = @INSTALL_DEST@
273  install: install_to_$(INSTALL_DEST) install-subdir  install: install_to_$(INSTALL_DEST) install-subdir
274    
275  install_to_libdir: all  install_to_libdir: all
276            ${mkinstalldirs} $(DESTDIR)$(libdir)$(MULTISUBDIR)
277          $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)$(MULTISUBDIR)/$(TARGETLIB)n          $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)$(MULTISUBDIR)/$(TARGETLIB)n
278          ( cd $(DESTDIR)$(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )          ( cd $(DESTDIR)$(libdir)$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )
279          mv -f $(DESTDIR)$(libdir)$(MULTISUBDIR)/$(TARGETLIB)n $(DESTDIR)$(libdir)$(MULTISUBDIR)/$(TARGETLIB)          mv -f $(DESTDIR)$(libdir)$(MULTISUBDIR)/$(TARGETLIB)n $(DESTDIR)$(libdir)$(MULTISUBDIR)/$(TARGETLIB)
# Line 275  install_to_libdir: all Line 289  install_to_libdir: all
289          fi          fi
290          @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install          @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
291    
292    # This is tricky.  Even though CC in the Makefile contains
293    # multilib-specific flags, it's overridden by FLAGS_TO_PASS from the
294    # default multilib, so we have to take LIBCFLAGS into account as well,
295    # since it will be passed the multilib flags.
296    MULTIOSDIR = `$(CC) $(LIBCFLAGS) -print-multi-os-directory`
297  install_to_tooldir: all  install_to_tooldir: all
298          $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n          ${mkinstalldirs} $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)
299          ( cd $(DESTDIR)$(tooldir)/lib$(MULTISUBDIR) ; $(RANLIB) $(TARGETLIB)n )          $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n
300          mv -f $(DESTDIR)$(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)n $(DESTDIR)$(tooldir)/lib$(MULTISUBDIR)/$(TARGETLIB)          ( cd $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR) ; $(RANLIB) $(TARGETLIB)n )
301            mv -f $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)
302          @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install          @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
303    
304  # needed-list is used by libstdc++.  NEEDED is the list of functions  # needed-list is used by libstdc++.  NEEDED is the list of functions
# Line 359  clean: clean-subdir Line 379  clean: clean-subdir
379  distclean: distclean-subdir  distclean: distclean-subdir
380          $(MAKE) SUBDIRS="" clean          $(MAKE) SUBDIRS="" clean
381          @$(MULTICLEAN) multi-clean DO=distclean          @$(MULTICLEAN) multi-clean DO=distclean
382          -rm -f *~ Makefile config.status xhost-mkfrag TAGS multilib.out          -rm -f *~ Makefile config.cache config.status xhost-mkfrag TAGS multilib.out
383          -rm -f config.log config.cache config.status          -rm -f config.log
384          -rmdir testsuite 2>/dev/null          -rmdir testsuite 2>/dev/null
385  maintainer-clean realclean: maintainer-clean-subdir  maintainer-clean realclean: maintainer-clean-subdir
386          $(MAKE) SUBDIRS="" distclean          $(MAKE) SUBDIRS="" distclean
# Line 374  Makefile: $(srcdir)/Makefile.in config.s Line 394  Makefile: $(srcdir)/Makefile.in config.s
394  # if needed.  This prevents problems with parallel builds.  # if needed.  This prevents problems with parallel builds.
395  config.h: stamp-h ; @true  config.h: stamp-h ; @true
396  stamp-h: $(srcdir)/config.in config.status Makefile  stamp-h: $(srcdir)/config.in config.status Makefile
397          CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status          CONFIG_FILES= CONFIG_HEADERS=config.h:$(srcdir)/config.in $(SHELL) ./config.status
398    
399  config.status: $(srcdir)/configure $(srcdir)/config.table  config.status: $(srcdir)/configure $(srcdir)/config.table
400          $(SHELL) ./config.status --recheck          $(SHELL) ./config.status --recheck
# Line 398  $(CONFIGURED_OFILES): stamp-picdir Line 418  $(CONFIGURED_OFILES): stamp-picdir
418  # The dependencies in the remainder of this file are automatically  # The dependencies in the remainder of this file are automatically
419  # generated by "make maint-deps".  Manual edits will be lost.  # generated by "make maint-deps".  Manual edits will be lost.
420    
421  _doprnt.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h  ./_doprnt.o: $(srcdir)/_doprnt.c config.h $(INCDIR)/ansidecl.h \
422  alloca.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          $(INCDIR)/safe-ctype.h
423  argv.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          if [ x"$(PICFLAG)" != x ]; then \
424  asprintf.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/_doprnt.c -o pic/$@; \
425  atexit.o: config.h          else true; fi
426  basename.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \          $(COMPILE.c) $(srcdir)/_doprnt.c $(OUTPUT_OPTION)
427    
428    ./alloca.o: $(srcdir)/alloca.c config.h $(INCDIR)/ansidecl.h \
429            $(INCDIR)/libiberty.h
430            if [ x"$(PICFLAG)" != x ]; then \
431              $(COMPILE.c) $(PICFLAG) $(srcdir)/alloca.c -o pic/$@; \
432            else true; fi
433            $(COMPILE.c) $(srcdir)/alloca.c $(OUTPUT_OPTION)
434    
435    ./argv.o: $(srcdir)/argv.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
436            if [ x"$(PICFLAG)" != x ]; then \
437              $(COMPILE.c) $(PICFLAG) $(srcdir)/argv.c -o pic/$@; \
438            else true; fi
439            $(COMPILE.c) $(srcdir)/argv.c $(OUTPUT_OPTION)
440    
441    ./asprintf.o: $(srcdir)/asprintf.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
442            if [ x"$(PICFLAG)" != x ]; then \
443              $(COMPILE.c) $(PICFLAG) $(srcdir)/asprintf.c -o pic/$@; \
444            else true; fi
445            $(COMPILE.c) $(srcdir)/asprintf.c $(OUTPUT_OPTION)
446    
447    ./atexit.o: $(srcdir)/atexit.c config.h
448            if [ x"$(PICFLAG)" != x ]; then \
449              $(COMPILE.c) $(PICFLAG) $(srcdir)/atexit.c -o pic/$@; \
450            else true; fi
451            $(COMPILE.c) $(srcdir)/atexit.c $(OUTPUT_OPTION)
452    
453    ./basename.o: $(srcdir)/basename.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
454          $(INCDIR)/safe-ctype.h          $(INCDIR)/safe-ctype.h
455  bsearch.o: config.h $(INCDIR)/ansidecl.h          if [ x"$(PICFLAG)" != x ]; then \
456  calloc.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/basename.c -o pic/$@; \
457  choose-temp.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          else true; fi
458  clock.o: config.h          $(COMPILE.c) $(srcdir)/basename.c $(OUTPUT_OPTION)
459  concat.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h  
460  copysign.o: $(INCDIR)/ansidecl.h  ./bcmp.o: $(srcdir)/bcmp.c
461  cp-demangle.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h \          if [ x"$(PICFLAG)" != x ]; then \
462              $(COMPILE.c) $(PICFLAG) $(srcdir)/bcmp.c -o pic/$@; \
463            else true; fi
464            $(COMPILE.c) $(srcdir)/bcmp.c $(OUTPUT_OPTION)
465    
466    ./bcopy.o: $(srcdir)/bcopy.c
467            if [ x"$(PICFLAG)" != x ]; then \
468              $(COMPILE.c) $(PICFLAG) $(srcdir)/bcopy.c -o pic/$@; \
469            else true; fi
470            $(COMPILE.c) $(srcdir)/bcopy.c $(OUTPUT_OPTION)
471    
472    ./bsearch.o: $(srcdir)/bsearch.c config.h $(INCDIR)/ansidecl.h
473            if [ x"$(PICFLAG)" != x ]; then \
474              $(COMPILE.c) $(PICFLAG) $(srcdir)/bsearch.c -o pic/$@; \
475            else true; fi
476            $(COMPILE.c) $(srcdir)/bsearch.c $(OUTPUT_OPTION)
477    
478    ./bzero.o: $(srcdir)/bzero.c
479            if [ x"$(PICFLAG)" != x ]; then \
480              $(COMPILE.c) $(PICFLAG) $(srcdir)/bzero.c -o pic/$@; \
481            else true; fi
482            $(COMPILE.c) $(srcdir)/bzero.c $(OUTPUT_OPTION)
483    
484    ./calloc.o: $(srcdir)/calloc.c $(INCDIR)/ansidecl.h
485            if [ x"$(PICFLAG)" != x ]; then \
486              $(COMPILE.c) $(PICFLAG) $(srcdir)/calloc.c -o pic/$@; \
487            else true; fi
488            $(COMPILE.c) $(srcdir)/calloc.c $(OUTPUT_OPTION)
489    
490    ./choose-temp.o: $(srcdir)/choose-temp.c config.h $(INCDIR)/ansidecl.h \
491            $(INCDIR)/libiberty.h
492            if [ x"$(PICFLAG)" != x ]; then \
493              $(COMPILE.c) $(PICFLAG) $(srcdir)/choose-temp.c -o pic/$@; \
494            else true; fi
495            $(COMPILE.c) $(srcdir)/choose-temp.c $(OUTPUT_OPTION)
496    
497    ./clock.o: $(srcdir)/clock.c config.h
498            if [ x"$(PICFLAG)" != x ]; then \
499              $(COMPILE.c) $(PICFLAG) $(srcdir)/clock.c -o pic/$@; \
500            else true; fi
501            $(COMPILE.c) $(srcdir)/clock.c $(OUTPUT_OPTION)
502    
503    ./concat.o: $(srcdir)/concat.c config.h $(INCDIR)/ansidecl.h \
504            $(INCDIR)/libiberty.h
505            if [ x"$(PICFLAG)" != x ]; then \
506              $(COMPILE.c) $(PICFLAG) $(srcdir)/concat.c -o pic/$@; \
507            else true; fi
508            $(COMPILE.c) $(srcdir)/concat.c $(OUTPUT_OPTION)
509    
510    ./copysign.o: $(srcdir)/copysign.c $(INCDIR)/ansidecl.h
511            if [ x"$(PICFLAG)" != x ]; then \
512              $(COMPILE.c) $(PICFLAG) $(srcdir)/copysign.c -o pic/$@; \
513            else true; fi
514            $(COMPILE.c) $(srcdir)/copysign.c $(OUTPUT_OPTION)
515    
516    ./cp-demangle.o: $(srcdir)/cp-demangle.c config.h $(INCDIR)/ansidecl.h \
517            $(srcdir)/cp-demangle.h $(INCDIR)/demangle.h \
518          $(INCDIR)/dyn-string.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h          $(INCDIR)/dyn-string.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h
519  cplus-dem.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h \          if [ x"$(PICFLAG)" != x ]; then \
520          $(INCDIR)/getopt.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demangle.c -o pic/$@; \
521  dyn-string.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/dyn-string.h \          else true; fi
522          $(INCDIR)/libiberty.h          $(COMPILE.c) $(srcdir)/cp-demangle.c $(OUTPUT_OPTION)
523  fdmatch.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h  
524  fibheap.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/fibheap.h \  ./cp-demint.o: $(srcdir)/cp-demint.c config.h $(INCDIR)/ansidecl.h \
525          $(INCDIR)/libiberty.h          $(srcdir)/cp-demangle.h $(INCDIR)/demangle.h \
526  floatformat.o: $(INCDIR)/ansidecl.h $(INCDIR)/floatformat.h          $(INCDIR)/libiberty.h
527  fnmatch.o: config.h $(INCDIR)/fnmatch.h $(INCDIR)/safe-ctype.h          if [ x"$(PICFLAG)" != x ]; then \
528  getcwd.o: config.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demint.c -o pic/$@; \
529  getopt.o: config.h $(INCDIR)/getopt.h          else true; fi
530  getopt1.o: config.h $(INCDIR)/getopt.h          $(COMPILE.c) $(srcdir)/cp-demint.c $(OUTPUT_OPTION)
531  getpagesize.o: config.h  
532  getpwd.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h  ./cplus-dem.o: $(srcdir)/cplus-dem.c config.h $(INCDIR)/ansidecl.h \
533  getruntime.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
534  hashtab.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/hashtab.h \          $(INCDIR)/safe-ctype.h
535            if [ x"$(PICFLAG)" != x ]; then \
536              $(COMPILE.c) $(PICFLAG) $(srcdir)/cplus-dem.c -o pic/$@; \
537            else true; fi
538            $(COMPILE.c) $(srcdir)/cplus-dem.c $(OUTPUT_OPTION)
539    
540    ./dyn-string.o: $(srcdir)/dyn-string.c config.h $(INCDIR)/ansidecl.h \
541            $(INCDIR)/dyn-string.h $(INCDIR)/libiberty.h
542            if [ x"$(PICFLAG)" != x ]; then \
543              $(COMPILE.c) $(PICFLAG) $(srcdir)/dyn-string.c -o pic/$@; \
544            else true; fi
545            $(COMPILE.c) $(srcdir)/dyn-string.c $(OUTPUT_OPTION)
546    
547    ./fdmatch.o: $(srcdir)/fdmatch.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
548            if [ x"$(PICFLAG)" != x ]; then \
549              $(COMPILE.c) $(PICFLAG) $(srcdir)/fdmatch.c -o pic/$@; \
550            else true; fi
551            $(COMPILE.c) $(srcdir)/fdmatch.c $(OUTPUT_OPTION)
552    
553    ./ffs.o: $(srcdir)/ffs.c
554            if [ x"$(PICFLAG)" != x ]; then \
555              $(COMPILE.c) $(PICFLAG) $(srcdir)/ffs.c -o pic/$@; \
556            else true; fi
557            $(COMPILE.c) $(srcdir)/ffs.c $(OUTPUT_OPTION)
558    
559    ./fibheap.o: $(srcdir)/fibheap.c config.h $(INCDIR)/ansidecl.h \
560            $(INCDIR)/fibheap.h $(INCDIR)/libiberty.h
561            if [ x"$(PICFLAG)" != x ]; then \
562              $(COMPILE.c) $(PICFLAG) $(srcdir)/fibheap.c -o pic/$@; \
563            else true; fi
564            $(COMPILE.c) $(srcdir)/fibheap.c $(OUTPUT_OPTION)
565    
566    ./floatformat.o: $(srcdir)/floatformat.c config.h $(INCDIR)/ansidecl.h \
567            $(INCDIR)/floatformat.h $(INCDIR)/libiberty.h
568            if [ x"$(PICFLAG)" != x ]; then \
569              $(COMPILE.c) $(PICFLAG) $(srcdir)/floatformat.c -o pic/$@; \
570            else true; fi
571            $(COMPILE.c) $(srcdir)/floatformat.c $(OUTPUT_OPTION)
572    
573    ./fnmatch.o: $(srcdir)/fnmatch.c config.h $(INCDIR)/fnmatch.h \
574            $(INCDIR)/safe-ctype.h
575            if [ x"$(PICFLAG)" != x ]; then \
576              $(COMPILE.c) $(PICFLAG) $(srcdir)/fnmatch.c -o pic/$@; \
577            else true; fi
578            $(COMPILE.c) $(srcdir)/fnmatch.c $(OUTPUT_OPTION)
579    
580    ./getcwd.o: $(srcdir)/getcwd.c config.h
581            if [ x"$(PICFLAG)" != x ]; then \
582              $(COMPILE.c) $(PICFLAG) $(srcdir)/getcwd.c -o pic/$@; \
583            else true; fi
584            $(COMPILE.c) $(srcdir)/getcwd.c $(OUTPUT_OPTION)
585    
586    ./getopt.o: $(srcdir)/getopt.c config.h $(INCDIR)/getopt.h
587            if [ x"$(PICFLAG)" != x ]; then \
588              $(COMPILE.c) $(PICFLAG) $(srcdir)/getopt.c -o pic/$@; \
589            else true; fi
590            $(COMPILE.c) $(srcdir)/getopt.c $(OUTPUT_OPTION)
591    
592    ./getopt1.o: $(srcdir)/getopt1.c config.h $(INCDIR)/getopt.h
593            if [ x"$(PICFLAG)" != x ]; then \
594              $(COMPILE.c) $(PICFLAG) $(srcdir)/getopt1.c -o pic/$@; \
595            else true; fi
596            $(COMPILE.c) $(srcdir)/getopt1.c $(OUTPUT_OPTION)
597    
598    ./getpagesize.o: $(srcdir)/getpagesize.c config.h
599            if [ x"$(PICFLAG)" != x ]; then \
600              $(COMPILE.c) $(PICFLAG) $(srcdir)/getpagesize.c -o pic/$@; \
601            else true; fi
602            $(COMPILE.c) $(srcdir)/getpagesize.c $(OUTPUT_OPTION)
603    
604    ./getpwd.o: $(srcdir)/getpwd.c config.h $(INCDIR)/ansidecl.h \
605            $(INCDIR)/libiberty.h
606            if [ x"$(PICFLAG)" != x ]; then \
607              $(COMPILE.c) $(PICFLAG) $(srcdir)/getpwd.c -o pic/$@; \
608            else true; fi
609            $(COMPILE.c) $(srcdir)/getpwd.c $(OUTPUT_OPTION)
610    
611    ./getruntime.o: $(srcdir)/getruntime.c config.h $(INCDIR)/ansidecl.h \
612            $(INCDIR)/libiberty.h
613            if [ x"$(PICFLAG)" != x ]; then \
614              $(COMPILE.c) $(PICFLAG) $(srcdir)/getruntime.c -o pic/$@; \
615            else true; fi
616            $(COMPILE.c) $(srcdir)/getruntime.c $(OUTPUT_OPTION)
617    
618    ./hashtab.o: $(srcdir)/hashtab.c config.h $(INCDIR)/ansidecl.h \
619            $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h
620            if [ x"$(PICFLAG)" != x ]; then \
621              $(COMPILE.c) $(PICFLAG) $(srcdir)/hashtab.c -o pic/$@; \
622            else true; fi
623            $(COMPILE.c) $(srcdir)/hashtab.c $(OUTPUT_OPTION)
624    
625    ./hex.o: $(srcdir)/hex.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
626            $(INCDIR)/safe-ctype.h
627            if [ x"$(PICFLAG)" != x ]; then \
628              $(COMPILE.c) $(PICFLAG) $(srcdir)/hex.c -o pic/$@; \
629            else true; fi
630            $(COMPILE.c) $(srcdir)/hex.c $(OUTPUT_OPTION)
631    
632    ./index.o: $(srcdir)/index.c
633            if [ x"$(PICFLAG)" != x ]; then \
634              $(COMPILE.c) $(PICFLAG) $(srcdir)/index.c -o pic/$@; \
635            else true; fi
636            $(COMPILE.c) $(srcdir)/index.c $(OUTPUT_OPTION)
637    
638    ./insque.o: $(srcdir)/insque.c
639            if [ x"$(PICFLAG)" != x ]; then \
640              $(COMPILE.c) $(PICFLAG) $(srcdir)/insque.c -o pic/$@; \
641            else true; fi
642            $(COMPILE.c) $(srcdir)/insque.c $(OUTPUT_OPTION)
643    
644    ./lbasename.o: $(srcdir)/lbasename.c $(INCDIR)/ansidecl.h $(INCDIR)/filenames.h \
645            $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
646            if [ x"$(PICFLAG)" != x ]; then \
647              $(COMPILE.c) $(PICFLAG) $(srcdir)/lbasename.c -o pic/$@; \
648            else true; fi
649            $(COMPILE.c) $(srcdir)/lbasename.c $(OUTPUT_OPTION)
650    
651    ./lrealpath.o: $(srcdir)/lrealpath.c config.h $(INCDIR)/ansidecl.h \
652            $(INCDIR)/libiberty.h
653            if [ x"$(PICFLAG)" != x ]; then \
654              $(COMPILE.c) $(PICFLAG) $(srcdir)/lrealpath.c -o pic/$@; \
655            else true; fi
656            $(COMPILE.c) $(srcdir)/lrealpath.c $(OUTPUT_OPTION)
657    
658    ./make-relative-prefix.o: $(srcdir)/make-relative-prefix.c config.h \
659            $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
660            if [ x"$(PICFLAG)" != x ]; then \
661              $(COMPILE.c) $(PICFLAG) $(srcdir)/make-relative-prefix.c -o pic/$@; \
662            else true; fi
663            $(COMPILE.c) $(srcdir)/make-relative-prefix.c $(OUTPUT_OPTION)
664    
665    ./make-temp-file.o: $(srcdir)/make-temp-file.c config.h $(INCDIR)/ansidecl.h \
666          $(INCDIR)/libiberty.h          $(INCDIR)/libiberty.h
667  hex.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          if [ x"$(PICFLAG)" != x ]; then \
668  lbasename.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \            $(COMPILE.c) $(PICFLAG) $(srcdir)/make-temp-file.c -o pic/$@; \
669            else true; fi
670            $(COMPILE.c) $(srcdir)/make-temp-file.c $(OUTPUT_OPTION)
671    
672    ./md5.o: $(srcdir)/md5.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h
673            if [ x"$(PICFLAG)" != x ]; then \
674              $(COMPILE.c) $(PICFLAG) $(srcdir)/md5.c -o pic/$@; \
675            else true; fi
676            $(COMPILE.c) $(srcdir)/md5.c $(OUTPUT_OPTION)
677    
678    ./memchr.o: $(srcdir)/memchr.c $(INCDIR)/ansidecl.h
679            if [ x"$(PICFLAG)" != x ]; then \
680              $(COMPILE.c) $(PICFLAG) $(srcdir)/memchr.c -o pic/$@; \
681            else true; fi
682            $(COMPILE.c) $(srcdir)/memchr.c $(OUTPUT_OPTION)
683    
684    ./memcmp.o: $(srcdir)/memcmp.c $(INCDIR)/ansidecl.h
685            if [ x"$(PICFLAG)" != x ]; then \
686              $(COMPILE.c) $(PICFLAG) $(srcdir)/memcmp.c -o pic/$@; \
687            else true; fi
688            $(COMPILE.c) $(srcdir)/memcmp.c $(OUTPUT_OPTION)
689    
690    ./memcpy.o: $(srcdir)/memcpy.c $(INCDIR)/ansidecl.h
691            if [ x"$(PICFLAG)" != x ]; then \
692              $(COMPILE.c) $(PICFLAG) $(srcdir)/memcpy.c -o pic/$@; \
693            else true; fi
694            $(COMPILE.c) $(srcdir)/memcpy.c $(OUTPUT_OPTION)
695    
696    ./memmove.o: $(srcdir)/memmove.c $(INCDIR)/ansidecl.h
697            if [ x"$(PICFLAG)" != x ]; then \
698              $(COMPILE.c) $(PICFLAG) $(srcdir)/memmove.c -o pic/$@; \
699            else true; fi
700            $(COMPILE.c) $(srcdir)/memmove.c $(OUTPUT_OPTION)
701    
702    ./mempcpy.o: $(srcdir)/mempcpy.c $(INCDIR)/ansidecl.h
703            if [ x"$(PICFLAG)" != x ]; then \
704              $(COMPILE.c) $(PICFLAG) $(srcdir)/mempcpy.c -o pic/$@; \
705            else true; fi
706            $(COMPILE.c) $(srcdir)/mempcpy.c $(OUTPUT_OPTION)
707    
708    ./memset.o: $(srcdir)/memset.c $(INCDIR)/ansidecl.h
709            if [ x"$(PICFLAG)" != x ]; then \
710              $(COMPILE.c) $(PICFLAG) $(srcdir)/memset.c -o pic/$@; \
711            else true; fi
712            $(COMPILE.c) $(srcdir)/memset.c $(OUTPUT_OPTION)
713    
714    ./mkstemps.o: $(srcdir)/mkstemps.c config.h $(INCDIR)/ansidecl.h
715            if [ x"$(PICFLAG)" != x ]; then \
716              $(COMPILE.c) $(PICFLAG) $(srcdir)/mkstemps.c -o pic/$@; \
717            else true; fi
718            $(COMPILE.c) $(srcdir)/mkstemps.c $(OUTPUT_OPTION)
719    
720    ./msdos.o: $(srcdir)/msdos.c
721            if [ x"$(PICFLAG)" != x ]; then \
722              $(COMPILE.c) $(PICFLAG) $(srcdir)/msdos.c -o pic/$@; \
723            else true; fi
724            $(COMPILE.c) $(srcdir)/msdos.c $(OUTPUT_OPTION)
725    
726    ./objalloc.o: $(srcdir)/objalloc.c config.h $(INCDIR)/ansidecl.h \
727            $(INCDIR)/objalloc.h
728            if [ x"$(PICFLAG)" != x ]; then \
729              $(COMPILE.c) $(PICFLAG) $(srcdir)/objalloc.c -o pic/$@; \
730            else true; fi
731            $(COMPILE.c) $(srcdir)/objalloc.c $(OUTPUT_OPTION)
732    
733    ./obstack.o: $(srcdir)/obstack.c config.h $(INCDIR)/obstack.h
734            if [ x"$(PICFLAG)" != x ]; then \
735              $(COMPILE.c) $(PICFLAG) $(srcdir)/obstack.c -o pic/$@; \
736            else true; fi
737            $(COMPILE.c) $(srcdir)/obstack.c $(OUTPUT_OPTION)
738    
739    ./partition.o: $(srcdir)/partition.c config.h $(INCDIR)/ansidecl.h \
740            $(INCDIR)/libiberty.h $(INCDIR)/partition.h
741            if [ x"$(PICFLAG)" != x ]; then \
742              $(COMPILE.c) $(PICFLAG) $(srcdir)/partition.c -o pic/$@; \
743            else true; fi
744            $(COMPILE.c) $(srcdir)/partition.c $(OUTPUT_OPTION)
745    
746    ./pex-djgpp.o: $(srcdir)/pex-djgpp.c config.h $(INCDIR)/ansidecl.h \
747            $(INCDIR)/libiberty.h $(srcdir)/pex-common.h
748            if [ x"$(PICFLAG)" != x ]; then \
749              $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-djgpp.c -o pic/$@; \
750            else true; fi
751            $(COMPILE.c) $(srcdir)/pex-djgpp.c $(OUTPUT_OPTION)
752    
753    ./pex-msdos.o: $(srcdir)/pex-msdos.c config.h $(INCDIR)/ansidecl.h \
754            $(INCDIR)/libiberty.h $(srcdir)/pex-common.h \
755          $(INCDIR)/safe-ctype.h          $(INCDIR)/safe-ctype.h
756  make-temp-file.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          if [ x"$(PICFLAG)" != x ]; then \
757  md5.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-msdos.c -o pic/$@; \
758  memchr.o: $(INCDIR)/ansidecl.h          else true; fi
759  memcmp.o: $(INCDIR)/ansidecl.h          $(COMPILE.c) $(srcdir)/pex-msdos.c $(OUTPUT_OPTION)
760  memcpy.o: $(INCDIR)/ansidecl.h  
761  memmove.o: $(INCDIR)/ansidecl.h  ./pex-os2.o: $(srcdir)/pex-os2.c config.h $(INCDIR)/ansidecl.h \
762  memset.o: $(INCDIR)/ansidecl.h          $(INCDIR)/libiberty.h $(srcdir)/pex-common.h
763  mkstemps.o: config.h $(INCDIR)/ansidecl.h          if [ x"$(PICFLAG)" != x ]; then \
764  objalloc.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/objalloc.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-os2.c -o pic/$@; \
765  obstack.o: config.h $(INCDIR)/obstack.h          else true; fi
766  partition.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \          $(COMPILE.c) $(srcdir)/pex-os2.c $(OUTPUT_OPTION)
767          $(INCDIR)/partition.h  
768  pexecute.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \  ./pex-unix.o: $(srcdir)/pex-unix.c config.h $(INCDIR)/ansidecl.h \
769            $(INCDIR)/libiberty.h $(srcdir)/pex-common.h
770            if [ x"$(PICFLAG)" != x ]; then \
771              $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-unix.c -o pic/$@; \
772            else true; fi
773            $(COMPILE.c) $(srcdir)/pex-unix.c $(OUTPUT_OPTION)
774    
775    ./pex-win32.o: $(srcdir)/pex-win32.c config.h $(INCDIR)/ansidecl.h \
776            $(INCDIR)/libiberty.h $(srcdir)/pex-common.h
777            if [ x"$(PICFLAG)" != x ]; then \
778              $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-win32.c -o pic/$@; \
779            else true; fi
780            $(COMPILE.c) $(srcdir)/pex-win32.c $(OUTPUT_OPTION)
781    
782    ./physmem.o: $(srcdir)/physmem.c config.h $(INCDIR)/ansidecl.h \
783            $(INCDIR)/libiberty.h
784            if [ x"$(PICFLAG)" != x ]; then \
785              $(COMPILE.c) $(PICFLAG) $(srcdir)/physmem.c -o pic/$@; \
786            else true; fi
787            $(COMPILE.c) $(srcdir)/physmem.c $(OUTPUT_OPTION)
788    
789    ./putenv.o: $(srcdir)/putenv.c config.h $(INCDIR)/ansidecl.h
790            if [ x"$(PICFLAG)" != x ]; then \
791              $(COMPILE.c) $(PICFLAG) $(srcdir)/putenv.c -o pic/$@; \
792            else true; fi
793            $(COMPILE.c) $(srcdir)/putenv.c $(OUTPUT_OPTION)
794    
795    ./random.o: $(srcdir)/random.c $(INCDIR)/ansidecl.h
796            if [ x"$(PICFLAG)" != x ]; then \
797              $(COMPILE.c) $(PICFLAG) $(srcdir)/random.c -o pic/$@; \
798            else true; fi
799            $(COMPILE.c) $(srcdir)/random.c $(OUTPUT_OPTION)
800    
801    ./regex.o: $(srcdir)/regex.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/xregex.h \
802            $(INCDIR)/xregex2.h
803            if [ x"$(PICFLAG)" != x ]; then \
804              $(COMPILE.c) $(PICFLAG) $(srcdir)/regex.c -o pic/$@; \
805            else true; fi
806            $(COMPILE.c) $(srcdir)/regex.c $(OUTPUT_OPTION)
807    
808    ./rename.o: $(srcdir)/rename.c config.h $(INCDIR)/ansidecl.h
809            if [ x"$(PICFLAG)" != x ]; then \
810              $(COMPILE.c) $(PICFLAG) $(srcdir)/rename.c -o pic/$@; \
811            else true; fi
812            $(COMPILE.c) $(srcdir)/rename.c $(OUTPUT_OPTION)
813    
814    ./rindex.o: $(srcdir)/rindex.c
815            if [ x"$(PICFLAG)" != x ]; then \
816              $(COMPILE.c) $(PICFLAG) $(srcdir)/rindex.c -o pic/$@; \
817            else true; fi
818            $(COMPILE.c) $(srcdir)/rindex.c $(OUTPUT_OPTION)
819    
820    ./safe-ctype.o: $(srcdir)/safe-ctype.c $(INCDIR)/ansidecl.h \
821          $(INCDIR)/safe-ctype.h          $(INCDIR)/safe-ctype.h
822  putenv.o: config.h $(INCDIR)/ansidecl.h          if [ x"$(PICFLAG)" != x ]; then \
823  random.o: $(INCDIR)/ansidecl.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/safe-ctype.c -o pic/$@; \
824  regex.o: config.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h          else true; fi
825  rename.o: config.h          $(COMPILE.c) $(srcdir)/safe-ctype.c $(OUTPUT_OPTION)
826  safe-ctype.o: $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h  
827  setenv.o: config.h $(INCDIR)/ansidecl.h  ./setenv.o: $(srcdir)/setenv.c config.h $(INCDIR)/ansidecl.h
828  sigsetmask.o: $(INCDIR)/ansidecl.h          if [ x"$(PICFLAG)" != x ]; then \
829  sort.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \            $(COMPILE.c) $(PICFLAG) $(srcdir)/setenv.c -o pic/$@; \
830            else true; fi
831            $(COMPILE.c) $(srcdir)/setenv.c $(OUTPUT_OPTION)
832    
833    ./sigsetmask.o: $(srcdir)/sigsetmask.c $(INCDIR)/ansidecl.h
834            if [ x"$(PICFLAG)" != x ]; then \
835              $(COMPILE.c) $(PICFLAG) $(srcdir)/sigsetmask.c -o pic/$@; \
836            else true; fi
837            $(COMPILE.c) $(srcdir)/sigsetmask.c $(OUTPUT_OPTION)
838    
839    ./snprintf.o: $(srcdir)/snprintf.c $(INCDIR)/ansidecl.h
840            if [ x"$(PICFLAG)" != x ]; then \
841              $(COMPILE.c) $(PICFLAG) $(srcdir)/snprintf.c -o pic/$@; \
842            else true; fi
843            $(COMPILE.c) $(srcdir)/snprintf.c $(OUTPUT_OPTION)
844    
845    ./sort.o: $(srcdir)/sort.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
846          $(INCDIR)/sort.h          $(INCDIR)/sort.h
847  spaces.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          if [ x"$(PICFLAG)" != x ]; then \
848  splay-tree.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \            $(COMPILE.c) $(PICFLAG) $(srcdir)/sort.c -o pic/$@; \
849          $(INCDIR)/splay-tree.h          else true; fi
850  strcasecmp.o: $(INCDIR)/ansidecl.h          $(COMPILE.c) $(srcdir)/sort.c $(OUTPUT_OPTION)
851  strchr.o: $(INCDIR)/ansidecl.h  
852  strerror.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h  ./spaces.o: $(srcdir)/spaces.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
853  strncasecmp.o: $(INCDIR)/ansidecl.h          if [ x"$(PICFLAG)" != x ]; then \
854  strncmp.o: $(INCDIR)/ansidecl.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/spaces.c -o pic/$@; \
855  strrchr.o: $(INCDIR)/ansidecl.h          else true; fi
856  strsignal.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          $(COMPILE.c) $(srcdir)/spaces.c $(OUTPUT_OPTION)
857  strtod.o: $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h  
858  strtol.o: config.h $(INCDIR)/safe-ctype.h  ./splay-tree.o: $(srcdir)/splay-tree.c config.h $(INCDIR)/ansidecl.h \
859  strtoul.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h          $(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h
860  ternary.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \          if [ x"$(PICFLAG)" != x ]; then \
861          $(INCDIR)/ternary.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/splay-tree.c -o pic/$@; \
862  vasprintf.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          else true; fi
863  vfork.o: $(INCDIR)/ansidecl.h          $(COMPILE.c) $(srcdir)/splay-tree.c $(OUTPUT_OPTION)
864  vprintf.o: $(INCDIR)/ansidecl.h  
865  vsprintf.o: $(INCDIR)/ansidecl.h  ./stpcpy.o: $(srcdir)/stpcpy.c $(INCDIR)/ansidecl.h
866  waitpid.o: config.h          if [ x"$(PICFLAG)" != x ]; then \
867  xatexit.o: $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h            $(COMPILE.c) $(PICFLAG) $(srcdir)/stpcpy.c -o pic/$@; \
868  xexit.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          else true; fi
869  xmalloc.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          $(COMPILE.c) $(srcdir)/stpcpy.c $(OUTPUT_OPTION)
870  xmemdup.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h  
871  xstrdup.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h  ./stpncpy.o: $(srcdir)/stpncpy.c $(INCDIR)/ansidecl.h
872  xstrerror.o: config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h          if [ x"$(PICFLAG)" != x ]; then \
873              $(COMPILE.c) $(PICFLAG) $(srcdir)/stpncpy.c -o pic/$@; \
874            else true; fi
875            $(COMPILE.c) $(srcdir)/stpncpy.c $(OUTPUT_OPTION)
876    
877    ./strcasecmp.o: $(srcdir)/strcasecmp.c $(INCDIR)/ansidecl.h
878            if [ x"$(PICFLAG)" != x ]; then \
879              $(COMPILE.c) $(PICFLAG) $(srcdir)/strcasecmp.c -o pic/$@; \
880            else true; fi
881            $(COMPILE.c) $(srcdir)/strcasecmp.c $(OUTPUT_OPTION)
882    
883    ./strchr.o: $(srcdir)/strchr.c $(INCDIR)/ansidecl.h
884            if [ x"$(PICFLAG)" != x ]; then \
885              $(COMPILE.c) $(PICFLAG) $(srcdir)/strchr.c -o pic/$@; \
886            else true; fi
887            $(COMPILE.c) $(srcdir)/strchr.c $(OUTPUT_OPTION)
888    
889    ./strdup.o: $(srcdir)/strdup.c $(INCDIR)/ansidecl.h
890            if [ x"$(PICFLAG)" != x ]; then \
891              $(COMPILE.c) $(PICFLAG) $(srcdir)/strdup.c -o pic/$@; \
892            else true; fi
893            $(COMPILE.c) $(srcdir)/strdup.c $(OUTPUT_OPTION)
894    
895    ./strerror.o: $(srcdir)/strerror.c config.h $(INCDIR)/ansidecl.h \
896            $(INCDIR)/libiberty.h
897            if [ x"$(PICFLAG)" != x ]; then \
898              $(COMPILE.c) $(PICFLAG) $(srcdir)/strerror.c -o pic/$@; \
899            else true; fi
900            $(COMPILE.c) $(srcdir)/strerror.c $(OUTPUT_OPTION)
901    
902    ./strncasecmp.o: $(srcdir)/strncasecmp.c $(INCDIR)/ansidecl.h
903            if [ x"$(PICFLAG)" != x ]; then \
904              $(COMPILE.c) $(PICFLAG) $(srcdir)/strncasecmp.c -o pic/$@; \
905            else true; fi
906            $(COMPILE.c) $(srcdir)/strncasecmp.c $(OUTPUT_OPTION)
907    
908    ./strncmp.o: $(srcdir)/strncmp.c $(INCDIR)/ansidecl.h
909            if [ x"$(PICFLAG)" != x ]; then \
910              $(COMPILE.c) $(PICFLAG) $(srcdir)/strncmp.c -o pic/$@; \
911            else true; fi
912            $(COMPILE.c) $(srcdir)/strncmp.c $(OUTPUT_OPTION)
913    
914    ./strrchr.o: $(srcdir)/strrchr.c $(INCDIR)/ansidecl.h
915            if [ x"$(PICFLAG)" != x ]; then \
916              $(COMPILE.c) $(PICFLAG) $(srcdir)/strrchr.c -o pic/$@; \
917            else true; fi
918            $(COMPILE.c) $(srcdir)/strrchr.c $(OUTPUT_OPTION)
919    
920    ./strsignal.o: $(srcdir)/strsignal.c config.h $(INCDIR)/ansidecl.h \
921            $(INCDIR)/libiberty.h
922            if [ x"$(PICFLAG)" != x ]; then \
923              $(COMPILE.c) $(PICFLAG) $(srcdir)/strsignal.c -o pic/$@; \
924            else true; fi
925            $(COMPILE.c) $(srcdir)/strsignal.c $(OUTPUT_OPTION)
926    
927    ./strstr.o: $(srcdir)/strstr.c
928            if [ x"$(PICFLAG)" != x ]; then \
929              $(COMPILE.c) $(PICFLAG) $(srcdir)/strstr.c -o pic/$@; \
930            else true; fi
931            $(COMPILE.c) $(srcdir)/strstr.c $(OUTPUT_OPTION)
932    
933    ./strtod.o: $(srcdir)/strtod.c $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
934            if [ x"$(PICFLAG)" != x ]; then \
935              $(COMPILE.c) $(PICFLAG) $(srcdir)/strtod.c -o pic/$@; \
936            else true; fi
937            $(COMPILE.c) $(srcdir)/strtod.c $(OUTPUT_OPTION)
938    
939    ./strtol.o: $(srcdir)/strtol.c config.h $(INCDIR)/safe-ctype.h
940            if [ x"$(PICFLAG)" != x ]; then \
941              $(COMPILE.c) $(PICFLAG) $(srcdir)/strtol.c -o pic/$@; \
942            else true; fi
943            $(COMPILE.c) $(srcdir)/strtol.c $(OUTPUT_OPTION)
944    
945    ./strtoul.o: $(srcdir)/strtoul.c config.h $(INCDIR)/ansidecl.h \
946            $(INCDIR)/safe-ctype.h
947            if [ x"$(PICFLAG)" != x ]; then \
948              $(COMPILE.c) $(PICFLAG) $(srcdir)/strtoul.c -o pic/$@; \
949            else true; fi
950            $(COMPILE.c) $(srcdir)/strtoul.c $(OUTPUT_OPTION)
951    
952    ./ternary.o: $(srcdir)/ternary.c config.h $(INCDIR)/ansidecl.h \
953            $(INCDIR)/libiberty.h $(INCDIR)/ternary.h
954            if [ x"$(PICFLAG)" != x ]; then \
955              $(COMPILE.c) $(PICFLAG) $(srcdir)/ternary.c -o pic/$@; \
956            else true; fi
957            $(COMPILE.c) $(srcdir)/ternary.c $(OUTPUT_OPTION)
958    
959    ./tmpnam.o: $(srcdir)/tmpnam.c
960            if [ x"$(PICFLAG)" != x ]; then \
961              $(COMPILE.c) $(PICFLAG) $(srcdir)/tmpnam.c -o pic/$@; \
962            else true; fi
963            $(COMPILE.c) $(srcdir)/tmpnam.c $(OUTPUT_OPTION)
964    
965    ./unlink-if-ordinary.o: $(srcdir)/unlink-if-ordinary.c config.h $(INCDIR)/ansidecl.h \
966            $(INCDIR)/libiberty.h
967            if [ x"$(PICFLAG)" != x ]; then \
968              $(COMPILE.c) $(PICFLAG) $(srcdir)/unlink-if-ordinary.c -o pic/$@; \
969            else true; fi
970            $(COMPILE.c) $(srcdir)/unlink-if-ordinary.c $(OUTPUT_OPTION)
971    
972    ./vasprintf.o: $(srcdir)/vasprintf.c config.h $(INCDIR)/ansidecl.h \
973            $(INCDIR)/libiberty.h
974            if [ x"$(PICFLAG)" != x ]; then \
975              $(COMPILE.c) $(PICFLAG) $(srcdir)/vasprintf.c -o pic/$@; \
976            else true; fi
977            $(COMPILE.c) $(srcdir)/vasprintf.c $(OUTPUT_OPTION)
978    
979    ./vfork.o: $(srcdir)/vfork.c $(INCDIR)/ansidecl.h
980            if [ x"$(PICFLAG)" != x ]; then \
981              $(COMPILE.c) $(PICFLAG) $(srcdir)/vfork.c -o pic/$@; \
982            else true; fi
983            $(COMPILE.c) $(srcdir)/vfork.c $(OUTPUT_OPTION)
984    
985    ./vfprintf.o: $(srcdir)/vfprintf.c $(INCDIR)/ansidecl.h
986            if [ x"$(PICFLAG)" != x ]; then \
987              $(COMPILE.c) $(PICFLAG) $(srcdir)/vfprintf.c -o pic/$@; \
988            else true; fi
989            $(COMPILE.c) $(srcdir)/vfprintf.c $(OUTPUT_OPTION)
990    
991    ./vprintf.o: $(srcdir)/vprintf.c $(INCDIR)/ansidecl.h
992            if [ x"$(PICFLAG)" != x ]; then \
993              $(COMPILE.c) $(PICFLAG) $(srcdir)/vprintf.c -o pic/$@; \
994            else true; fi
995            $(COMPILE.c) $(srcdir)/vprintf.c $(OUTPUT_OPTION)
996    
997    ./vsnprintf.o: $(srcdir)/vsnprintf.c config.h $(INCDIR)/ansidecl.h \
998            $(INCDIR)/libiberty.h
999            if [ x"$(PICFLAG)" != x ]; then \
1000              $(COMPILE.c) $(PICFLAG) $(srcdir)/vsnprintf.c -o pic/$@; \
1001            else true; fi
1002            $(COMPILE.c) $(srcdir)/vsnprintf.c $(OUTPUT_OPTION)
1003    
1004    ./vsprintf.o: $(srcdir)/vsprintf.c $(INCDIR)/ansidecl.h
1005            if [ x"$(PICFLAG)" != x ]; then \
1006              $(COMPILE.c) $(PICFLAG) $(srcdir)/vsprintf.c -o pic/$@; \
1007            else true; fi
1008            $(COMPILE.c) $(srcdir)/vsprintf.c $(OUTPUT_OPTION)
1009    
1010    ./waitpid.o: $(srcdir)/waitpid.c config.h
1011            if [ x"$(PICFLAG)" != x ]; then \
1012              $(COMPILE.c) $(PICFLAG) $(srcdir)/waitpid.c -o pic/$@; \
1013            else true; fi
1014            $(COMPILE.c) $(srcdir)/waitpid.c $(OUTPUT_OPTION)
1015    
1016    ./xatexit.o: $(srcdir)/xatexit.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
1017            if [ x"$(PICFLAG)" != x ]; then \
1018              $(COMPILE.c) $(PICFLAG) $(srcdir)/xatexit.c -o pic/$@; \
1019            else true; fi
1020            $(COMPILE.c) $(srcdir)/xatexit.c $(OUTPUT_OPTION)
1021    
1022    ./xexit.o: $(srcdir)/xexit.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
1023            if [ x"$(PICFLAG)" != x ]; then \
1024              $(COMPILE.c) $(PICFLAG) $(srcdir)/xexit.c -o pic/$@; \
1025            else true; fi
1026            $(COMPILE.c) $(srcdir)/xexit.c $(OUTPUT_OPTION)
1027    
1028    ./xmalloc.o: $(srcdir)/xmalloc.c config.h $(INCDIR)/ansidecl.h \
1029            $(INCDIR)/libiberty.h
1030            if [ x"$(PICFLAG)" != x ]; then \
1031              $(COMPILE.c) $(PICFLAG) $(srcdir)/xmalloc.c -o pic/$@; \
1032            else true; fi
1033            $(COMPILE.c) $(srcdir)/xmalloc.c $(OUTPUT_OPTION)
1034    
1035    ./xmemdup.o: $(srcdir)/xmemdup.c config.h $(INCDIR)/ansidecl.h \
1036            $(INCDIR)/libiberty.h
1037            if [ x"$(PICFLAG)" != x ]; then \
1038              $(COMPILE.c) $(PICFLAG) $(srcdir)/xmemdup.c -o pic/$@; \
1039            else true; fi
1040            $(COMPILE.c) $(srcdir)/xmemdup.c $(OUTPUT_OPTION)
1041    
1042    ./xstrdup.o: $(srcdir)/xstrdup.c config.h $(INCDIR)/ansidecl.h \
1043            $(INCDIR)/libiberty.h
1044            if [ x"$(PICFLAG)" != x ]; then \
1045              $(COMPILE.c) $(PICFLAG) $(srcdir)/xstrdup.c -o pic/$@; \
1046            else true; fi
1047            $(COMPILE.c) $(srcdir)/xstrdup.c $(OUTPUT_OPTION)
1048    
1049    ./xstrerror.o: $(srcdir)/xstrerror.c config.h $(INCDIR)/ansidecl.h \
1050            $(INCDIR)/libiberty.h
1051            if [ x"$(PICFLAG)" != x ]; then \
1052              $(COMPILE.c) $(PICFLAG) $(srcdir)/xstrerror.c -o pic/$@; \
1053            else true; fi
1054            $(COMPILE.c) $(srcdir)/xstrerror.c $(OUTPUT_OPTION)
1055    
1056    # Don't export variables to the environment, in order to not confuse
1057    # configure.
1058    .NOEXPORT:

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.2.20.1

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26