> CC: gcc@ > From: iant@ > > Jay: >> I'm guessing that every ".o" in libiberty/Makefile.in should be changed to >> $(OBJEXT). > > Yes. > > Ian
Thanks. Specifically ".o" goes to "....@objext@". There's no way I'm going to be able to get "the papers" in. I can try to squeak by via triviality of change. I'm slightly derailed on other aspects of targeting VMS (e.g. *crt0*.c, vms-crtl.h), but this did work for me, attached. It's many lines, but highly mechanical. There are a few places where ".o" occurs in comments, can be left alone. There is: .c.o: false > .c.obj: > false and < -rm -rf *.o pic core errs \#* *.E a.out > -rm -rf *.o *.obj pic core errs \#* *.E a.out and I wrapped the affected lines to one file per line, and spaces instead of tabs (consistent rendering) - Jay
119a120,122 > .c.obj: > false > 160,178c163,213 < REQUIRED_OFILES = \ < ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o \ < ./alloca.o ./argv.o \ < ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o \ < ./dyn-string.o \ < ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o \ < ./fnmatch.o ./fopen_unlocked.o \ < ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o \ < ./hashtab.o ./hex.o \ < ./lbasename.o ./lrealpath.o \ < ./make-relative-prefix.o ./make-temp-file.o \ < ./objalloc.o ./obstack.o \ < ./partition.o ./pexecute.o ./physmem.o \ < ./pex-common.o ./pex-one.o @pexecute@ \ < ./safe-ctype.o ./sort.o ./spaces.o ./splay-tree.o ./strerror.o \ < ./strsignal.o \ < ./unlink-if-ordinary.o \ < ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o \ < ./xstrerror.o ./xstrndup.o --- > REQUIRED_OFILES = \ > ./reg...@objext@ \ > ./cplus-d...@objext@ \ > ./cp-demang...@objext@ \ > ./m...@objext@ \ > ./sh...@objext@ \ > ./allo...@objext@ \ > ./ar...@objext@ \ > ./choose-te...@objext@ \ > ./conc...@objext@ \ > ./cp-demi...@objext@ \ > ./crc...@objext@ \ > ./dyn-stri...@objext@ \ > ./fdmat...@objext@ \ > ./fibhe...@objext@ \ > ./filename_c...@objext@ \ > ./floatform...@objext@ \ > ./fnmat...@objext@ \ > ./fopen_unlock...@objext@ \ > ./geto...@objext@ \ > ./getop...@objext@ \ > ./getp...@objext@ \ > ./getrunti...@objext@ \ > ./hasht...@objext@ \ > ./h...@objext@ \ > ./lbasena...@objext@ \ > ./lrealpa...@objext@ \ > ./make-relative-pref...@objext@ \ > ./make-temp-fi...@objext@ \ > ./objall...@objext@ \ > ./obsta...@objext@ \ > ./partiti...@objext@ \ > ./pexecu...@objext@ \ > ./physm...@objext@ \ > ./pex-comm...@objext@ \ > ./pex-o...@objext@ \ > @pexecute@ \ > ./safe-cty...@objext@ \ > ./so...@objext@ \ > ./spac...@objext@ \ > ./splay-tr...@objext@ \ > ./strerr...@objext@ \ > ./strsign...@objext@ \ > ./unlink-if-ordina...@objext@ \ > ./xatex...@objext@ \ > ./xex...@objext@ \ > ./xmall...@objext@ \ > ./xmemd...@objext@ \ > ./xstrd...@objext@ \ > ./xstrerr...@objext@ \ > ./xstrnd...@objext@ 183,203c218,276 < CONFIGURED_OFILES = ./asprintf.o ./atexit.o \ < ./basename.o ./bcmp.o ./bcopy.o ./bsearch.o ./bzero.o \ < ./calloc.o ./clock.o ./copysign.o \ < ./_doprnt.o \ < ./ffs.o \ < ./getcwd.o ./getpagesize.o ./gettimeofday.o \ < ./index.o ./insque.o \ < ./memchr.o ./memcmp.o ./memcpy.o ./memmem.o ./memmove.o \ < ./mempcpy.o ./memset.o ./mkstemps.o \ < ./pex-djgpp.o ./pex-msdos.o \ < ./pex-unix.o ./pex-win32.o \ < ./putenv.o \ < ./random.o ./rename.o ./rindex.o \ < ./setenv.o ./sigsetmask.o ./snprintf.o ./stpcpy.o ./stpncpy.o \ < ./strcasecmp.o ./strchr.o ./strdup.o ./strncasecmp.o \ < ./strncmp.o ./strndup.o ./strrchr.o ./strstr.o \ < ./strtod.o ./strtol.o ./strtoul.o ./strverscmp.o \ < ./tmpnam.o \ < ./vasprintf.o ./vfork.o ./vfprintf.o ./vprintf.o ./vsnprintf.o \ < ./vsprintf.o \ < ./waitpid.o --- > CONFIGURED_OFILES = \ > ./asprin...@objext@ \ > ./atex...@objext@ \ > ./basena...@objext@ \ > ./bc...@objext@ \ > ./bco...@objext@ \ > ./bsear...@objext@ \ > ./bze...@objext@ \ > ./call...@objext@ \ > ./clo...@objext@ \ > ./copysi...@objext@ \ > ./_dopr...@objext@ \ > ./f...@objext@ \ > ./getc...@objext@ \ > ./getpagesi...@objext@ \ > ./gettimeofd...@objext@ \ > ./ind...@objext@ \ > ./insq...@objext@ \ > ./memc...@objext@ \ > ./memc...@objext@ \ > ./memc...@objext@ \ > ./memm...@objext@ \ > ./memmo...@objext@ \ > ./mempc...@objext@ \ > ./mems...@objext@ \ > ./mkstem...@objext@ \ > ./pex-djg...@objext@ \ > ./pex-msd...@objext@ \ > ./pex-un...@objext@ \ > ./pex-win...@objext@ \ > ./pute...@objext@ \ > ./rand...@objext@ \ > ./rena...@objext@ \ > ./rind...@objext@ \ > ./sete...@objext@ \ > ./sigsetma...@objext@ \ > ./snprin...@objext@ \ > ./stpc...@objext@ \ > ./stpnc...@objext@ \ > ./strcasec...@objext@ \ > ./strc...@objext@ \ > ./strd...@objext@ \ > ./strncasec...@objext@ \ > ./strnc...@objext@ \ > ./strnd...@objext@ \ > ./strrc...@objext@ \ > ./strs...@objext@ \ > ./strt...@objext@ \ > ./strt...@objext@ \ > ./strto...@objext@ \ > ./strversc...@objext@ \ > ./tmpn...@objext@ \ > ./vasprin...@objext@ \ > ./vfo...@objext@ \ > ./vfprin...@objext@ \ > ./vprin...@objext@ \ > ./vsnprin...@objext@ \ > ./vsprin...@objext@ \ > ./waitp...@objext@ 403c476 < -rm -rf *.o pic core errs \#* *.E a.out --- > -rm -rf *.o *.obj pic core errs \#* *.E a.out 472c545 < ./_doprnt.o: $(srcdir)/_doprnt.c config.h $(INCDIR)/ansidecl.h \ --- > ./_dopr...@objext@: $(srcdir)/_doprnt.c config.h $(INCDIR)/ansidecl.h \ 479c552 < ./alloca.o: $(srcdir)/alloca.c config.h $(INCDIR)/ansidecl.h \ --- > ./allo...@objext@: $(srcdir)/alloca.c config.h $(INCDIR)/ansidecl.h \ 486c559 < ./argv.o: $(srcdir)/argv.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ --- > ./ar...@objext@: $(srcdir)/argv.c config.h $(INCDIR)/ansidecl.h > $(INCDIR)/libiberty.h \ 493c566 < ./asprintf.o: $(srcdir)/asprintf.c config.h $(INCDIR)/ansidecl.h \ --- > ./asprin...@objext@: $(srcdir)/asprintf.c config.h $(INCDIR)/ansidecl.h \ 500c573 < ./atexit.o: $(srcdir)/atexit.c config.h --- > ./atex...@objext@: $(srcdir)/atexit.c config.h 506c579 < ./basename.o: $(srcdir)/basename.c config.h $(INCDIR)/ansidecl.h \ --- > ./basena...@objext@: $(srcdir)/basename.c config.h $(INCDIR)/ansidecl.h \ 513c586 < ./bcmp.o: $(srcdir)/bcmp.c --- > ./bc...@objext@: $(srcdir)/bcmp.c 519c592 < ./bcopy.o: $(srcdir)/bcopy.c --- > ./bco...@objext@: $(srcdir)/bcopy.c 525c598 < ./bsearch.o: $(srcdir)/bsearch.c config.h $(INCDIR)/ansidecl.h --- > ./bsear...@objext@: $(srcdir)/bsearch.c config.h $(INCDIR)/ansidecl.h 531c604 < ./bzero.o: $(srcdir)/bzero.c --- > ./bze...@objext@: $(srcdir)/bzero.c 537c610 < ./calloc.o: $(srcdir)/calloc.c $(INCDIR)/ansidecl.h --- > ./call...@objext@: $(srcdir)/calloc.c $(INCDIR)/ansidecl.h 543c616 < ./choose-temp.o: $(srcdir)/choose-temp.c config.h $(INCDIR)/ansidecl.h \ --- > ./choose-te...@objext@: $(srcdir)/choose-temp.c config.h $(INCDIR)/ansidecl.h > \ 550c623 < ./clock.o: $(srcdir)/clock.c config.h --- > ./clo...@objext@: $(srcdir)/clock.c config.h 556c629 < ./concat.o: $(srcdir)/concat.c config.h $(INCDIR)/ansidecl.h \ --- > ./conc...@objext@: $(srcdir)/concat.c config.h $(INCDIR)/ansidecl.h \ 563c636 < ./copysign.o: $(srcdir)/copysign.c $(INCDIR)/ansidecl.h --- > ./copysi...@objext@: $(srcdir)/copysign.c $(INCDIR)/ansidecl.h 569c642 < ./cp-demangle.o: $(srcdir)/cp-demangle.c config.h $(INCDIR)/ansidecl.h \ --- > ./cp-demang...@objext@: $(srcdir)/cp-demangle.c config.h $(INCDIR)/ansidecl.h > \ 577c650 < ./cp-demint.o: $(srcdir)/cp-demint.c config.h $(INCDIR)/ansidecl.h \ --- > ./cp-demi...@objext@: $(srcdir)/cp-demint.c config.h $(INCDIR)/ansidecl.h \ 585c658 < ./cplus-dem.o: $(srcdir)/cplus-dem.c config.h $(INCDIR)/ansidecl.h \ --- > ./cplus-d...@objext@: $(srcdir)/cplus-dem.c config.h $(INCDIR)/ansidecl.h \ 593c666 < ./crc32.o: $(srcdir)/crc32.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h --- > ./crc...@objext@: $(srcdir)/crc32.c config.h $(INCDIR)/ansidecl.h > $(INCDIR)/libiberty.h 599c672 < ./dyn-string.o: $(srcdir)/dyn-string.c config.h $(INCDIR)/ansidecl.h \ --- > ./dyn-stri...@objext@: $(srcdir)/dyn-string.c config.h $(INCDIR)/ansidecl.h \ 606c679 < ./fdmatch.o: $(srcdir)/fdmatch.c config.h $(INCDIR)/ansidecl.h \ --- > ./fdmat...@objext@: $(srcdir)/fdmatch.c config.h $(INCDIR)/ansidecl.h \ 613c686 < ./ffs.o: $(srcdir)/ffs.c --- > ./f...@objext@: $(srcdir)/ffs.c 619c692 < ./fibheap.o: $(srcdir)/fibheap.c config.h $(INCDIR)/ansidecl.h \ --- > ./fibhe...@objext@: $(srcdir)/fibheap.c config.h $(INCDIR)/ansidecl.h \ 626c699 < ./filename_cmp.o: $(srcdir)/filename_cmp.c config.h $(INCDIR)/filenames.h \ --- > ./filename_c...@objext@: $(srcdir)/filename_cmp.c config.h > $(INCDIR)/filenames.h \ 633c706 < ./floatformat.o: $(srcdir)/floatformat.c config.h $(INCDIR)/ansidecl.h \ --- > ./floatform...@objext@: $(srcdir)/floatformat.c config.h $(INCDIR)/ansidecl.h > \ 640c713 < ./fnmatch.o: $(srcdir)/fnmatch.c config.h $(INCDIR)/fnmatch.h \ --- > ./fnmat...@objext@: $(srcdir)/fnmatch.c config.h $(INCDIR)/fnmatch.h \ 647c720 < ./fopen_unlocked.o: $(srcdir)/fopen_unlocked.c config.h $(INCDIR)/ansidecl.h \ --- > ./fopen_unlock...@objext@: $(srcdir)/fopen_unlocked.c config.h > $(INCDIR)/ansidecl.h \ 654c727 < ./getcwd.o: $(srcdir)/getcwd.c config.h --- > ./getc...@objext@: $(srcdir)/getcwd.c config.h 660c733 < ./getopt.o: $(srcdir)/getopt.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/getopt.h --- > ./geto...@objext@: $(srcdir)/getopt.c config.h $(INCDIR)/ansidecl.h > $(INCDIR)/getopt.h 666c739 < ./getopt1.o: $(srcdir)/getopt1.c config.h $(INCDIR)/getopt.h --- > ./getop...@objext@: $(srcdir)/getopt1.c config.h $(INCDIR)/getopt.h 672c745 < ./getpagesize.o: $(srcdir)/getpagesize.c config.h --- > ./getpagesi...@objext@: $(srcdir)/getpagesize.c config.h 678c751 < ./getpwd.o: $(srcdir)/getpwd.c config.h $(INCDIR)/ansidecl.h \ --- > ./getp...@objext@: $(srcdir)/getpwd.c config.h $(INCDIR)/ansidecl.h \ 685c758 < ./getruntime.o: $(srcdir)/getruntime.c config.h $(INCDIR)/ansidecl.h \ --- > ./getrunti...@objext@: $(srcdir)/getruntime.c config.h $(INCDIR)/ansidecl.h \ 692c765 < ./gettimeofday.o: $(srcdir)/gettimeofday.c config.h $(INCDIR)/ansidecl.h \ --- > ./gettimeofd...@objext@: $(srcdir)/gettimeofday.c config.h > $(INCDIR)/ansidecl.h \ 699c772 < ./hashtab.o: $(srcdir)/hashtab.c config.h $(INCDIR)/ansidecl.h \ --- > ./hasht...@objext@: $(srcdir)/hashtab.c config.h $(INCDIR)/ansidecl.h \ 706c779 < ./hex.o: $(srcdir)/hex.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ --- > ./h...@objext@: $(srcdir)/hex.c config.h $(INCDIR)/ansidecl.h > $(INCDIR)/libiberty.h \ 713c786 < ./index.o: $(srcdir)/index.c --- > ./ind...@objext@: $(srcdir)/index.c 719c792 < ./insque.o: $(srcdir)/insque.c --- > ./insq...@objext@: $(srcdir)/insque.c 725c798 < ./lbasename.o: $(srcdir)/lbasename.c config.h $(INCDIR)/ansidecl.h \ --- > ./lbasena...@objext@: $(srcdir)/lbasename.c config.h $(INCDIR)/ansidecl.h \ 733c806 < ./lrealpath.o: $(srcdir)/lrealpath.c config.h $(INCDIR)/ansidecl.h \ --- > ./lrealpa...@objext@: $(srcdir)/lrealpath.c config.h $(INCDIR)/ansidecl.h \ 740c813 < ./make-relative-prefix.o: $(srcdir)/make-relative-prefix.c config.h \ --- > ./make-relative-pref...@objext@: $(srcdir)/make-relative-prefix.c config.h \ 747c820 < ./make-temp-file.o: $(srcdir)/make-temp-file.c config.h $(INCDIR)/ansidecl.h \ --- > ./make-temp-fi...@objext@: $(srcdir)/make-temp-file.c config.h > $(INCDIR)/ansidecl.h \ 754c827 < ./md5.o: $(srcdir)/md5.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h --- > ./m...@objext@: $(srcdir)/md5.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h 760c833 < ./memchr.o: $(srcdir)/memchr.c $(INCDIR)/ansidecl.h --- > ./memc...@objext@: $(srcdir)/memchr.c $(INCDIR)/ansidecl.h 766c839 < ./memcmp.o: $(srcdir)/memcmp.c $(INCDIR)/ansidecl.h --- > ./memc...@objext@: $(srcdir)/memcmp.c $(INCDIR)/ansidecl.h 772c845 < ./memcpy.o: $(srcdir)/memcpy.c $(INCDIR)/ansidecl.h --- > ./memc...@objext@: $(srcdir)/memcpy.c $(INCDIR)/ansidecl.h 778c851 < ./memmem.o: $(srcdir)/memmem.c config.h --- > ./memm...@objext@: $(srcdir)/memmem.c config.h 784c857 < ./memmove.o: $(srcdir)/memmove.c $(INCDIR)/ansidecl.h --- > ./memmo...@objext@: $(srcdir)/memmove.c $(INCDIR)/ansidecl.h 790c863 < ./mempcpy.o: $(srcdir)/mempcpy.c $(INCDIR)/ansidecl.h --- > ./mempc...@objext@: $(srcdir)/mempcpy.c $(INCDIR)/ansidecl.h 796c869 < ./memset.o: $(srcdir)/memset.c $(INCDIR)/ansidecl.h --- > ./mems...@objext@: $(srcdir)/memset.c $(INCDIR)/ansidecl.h 802c875 < ./mkstemps.o: $(srcdir)/mkstemps.c config.h $(INCDIR)/ansidecl.h --- > ./mkstem...@objext@: $(srcdir)/mkstemps.c config.h $(INCDIR)/ansidecl.h 808c881 < ./msdos.o: $(srcdir)/msdos.c --- > ./msd...@objext@: $(srcdir)/msdos.c 814c887 < ./objalloc.o: $(srcdir)/objalloc.c config.h $(INCDIR)/ansidecl.h \ --- > ./objall...@objext@: $(srcdir)/objalloc.c config.h $(INCDIR)/ansidecl.h \ 821c894 < ./obstack.o: $(srcdir)/obstack.c config.h $(INCDIR)/obstack.h --- > ./obsta...@objext@: $(srcdir)/obstack.c config.h $(INCDIR)/obstack.h 827c900 < ./partition.o: $(srcdir)/partition.c config.h $(INCDIR)/ansidecl.h \ --- > ./partiti...@objext@: $(srcdir)/partition.c config.h $(INCDIR)/ansidecl.h \ 834c907 < ./pex-common.o: $(srcdir)/pex-common.c config.h $(INCDIR)/ansidecl.h \ --- > ./pex-comm...@objext@: $(srcdir)/pex-common.c config.h $(INCDIR)/ansidecl.h \ 841c914 < ./pex-djgpp.o: $(srcdir)/pex-djgpp.c config.h $(INCDIR)/ansidecl.h \ --- > ./pex-djg...@objext@: $(srcdir)/pex-djgpp.c config.h $(INCDIR)/ansidecl.h \ 848c921 < ./pex-msdos.o: $(srcdir)/pex-msdos.c config.h $(INCDIR)/ansidecl.h \ --- > ./pex-msd...@objext@: $(srcdir)/pex-msdos.c config.h $(INCDIR)/ansidecl.h \ 856c929 < ./pex-one.o: $(srcdir)/pex-one.c config.h $(INCDIR)/ansidecl.h \ --- > ./pex-o...@objext@: $(srcdir)/pex-one.c config.h $(INCDIR)/ansidecl.h \ 863c936 < ./pex-unix.o: $(srcdir)/pex-unix.c config.h $(INCDIR)/ansidecl.h \ --- > ./pex-un...@objext@: $(srcdir)/pex-unix.c config.h $(INCDIR)/ansidecl.h \ 870c943 < ./pex-win32.o: $(srcdir)/pex-win32.c config.h $(INCDIR)/ansidecl.h \ --- > ./pex-win...@objext@: $(srcdir)/pex-win32.c config.h $(INCDIR)/ansidecl.h \ 877c950 < ./pexecute.o: $(srcdir)/pexecute.c config.h $(INCDIR)/ansidecl.h \ --- > ./pexecu...@objext@: $(srcdir)/pexecute.c config.h $(INCDIR)/ansidecl.h \ 884c957 < ./physmem.o: $(srcdir)/physmem.c config.h $(INCDIR)/ansidecl.h \ --- > ./physm...@objext@: $(srcdir)/physmem.c config.h $(INCDIR)/ansidecl.h \ 891c964 < ./putenv.o: $(srcdir)/putenv.c config.h $(INCDIR)/ansidecl.h --- > ./pute...@objext@: $(srcdir)/putenv.c config.h $(INCDIR)/ansidecl.h 897c970 < ./random.o: $(srcdir)/random.c $(INCDIR)/ansidecl.h --- > ./rand...@objext@: $(srcdir)/random.c $(INCDIR)/ansidecl.h 903c976 < ./regex.o: $(srcdir)/regex.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/xregex.h \ --- > ./reg...@objext@: $(srcdir)/regex.c config.h $(INCDIR)/ansidecl.h > $(INCDIR)/xregex.h \ 910c983 < ./rename.o: $(srcdir)/rename.c config.h $(INCDIR)/ansidecl.h --- > ./rena...@objext@: $(srcdir)/rename.c config.h $(INCDIR)/ansidecl.h 916c989 < ./rindex.o: $(srcdir)/rindex.c --- > ./rind...@objext@: $(srcdir)/rindex.c 922c995 < ./safe-ctype.o: $(srcdir)/safe-ctype.c $(INCDIR)/ansidecl.h \ --- > ./safe-cty...@objext@: $(srcdir)/safe-ctype.c $(INCDIR)/ansidecl.h \ 929c1002 < ./setenv.o: $(srcdir)/setenv.c config.h $(INCDIR)/ansidecl.h --- > ./sete...@objext@: $(srcdir)/setenv.c config.h $(INCDIR)/ansidecl.h 935c1008 < ./sha1.o: $(srcdir)/sha1.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/sha1.h --- > ./sh...@objext@: $(srcdir)/sha1.c config.h $(INCDIR)/ansidecl.h > $(INCDIR)/sha1.h 941c1014 < ./sigsetmask.o: $(srcdir)/sigsetmask.c $(INCDIR)/ansidecl.h --- > ./sigsetma...@objext@: $(srcdir)/sigsetmask.c $(INCDIR)/ansidecl.h 947c1020 < ./snprintf.o: $(srcdir)/snprintf.c $(INCDIR)/ansidecl.h --- > ./snprin...@objext@: $(srcdir)/snprintf.c $(INCDIR)/ansidecl.h 953c1026 < ./sort.o: $(srcdir)/sort.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ --- > ./so...@objext@: $(srcdir)/sort.c config.h $(INCDIR)/ansidecl.h > $(INCDIR)/libiberty.h \ 960c1033 < ./spaces.o: $(srcdir)/spaces.c config.h $(INCDIR)/ansidecl.h \ --- > ./spac...@objext@: $(srcdir)/spaces.c config.h $(INCDIR)/ansidecl.h \ 967c1040 < ./splay-tree.o: $(srcdir)/splay-tree.c config.h $(INCDIR)/ansidecl.h \ --- > ./splay-tr...@objext@: $(srcdir)/splay-tree.c config.h $(INCDIR)/ansidecl.h \ 974c1047 < ./stpcpy.o: $(srcdir)/stpcpy.c $(INCDIR)/ansidecl.h --- > ./stpc...@objext@: $(srcdir)/stpcpy.c $(INCDIR)/ansidecl.h 980c1053 < ./stpncpy.o: $(srcdir)/stpncpy.c $(INCDIR)/ansidecl.h --- > ./stpnc...@objext@: $(srcdir)/stpncpy.c $(INCDIR)/ansidecl.h 986c1059 < ./strcasecmp.o: $(srcdir)/strcasecmp.c $(INCDIR)/ansidecl.h --- > ./strcasec...@objext@: $(srcdir)/strcasecmp.c $(INCDIR)/ansidecl.h 992c1065 < ./strchr.o: $(srcdir)/strchr.c $(INCDIR)/ansidecl.h --- > ./strc...@objext@: $(srcdir)/strchr.c $(INCDIR)/ansidecl.h 998c1071 < ./strdup.o: $(srcdir)/strdup.c $(INCDIR)/ansidecl.h --- > ./strd...@objext@: $(srcdir)/strdup.c $(INCDIR)/ansidecl.h 1004c1077 < ./strerror.o: $(srcdir)/strerror.c config.h $(INCDIR)/ansidecl.h \ --- > ./strerr...@objext@: $(srcdir)/strerror.c config.h $(INCDIR)/ansidecl.h \ 1011c1084 < ./strncasecmp.o: $(srcdir)/strncasecmp.c $(INCDIR)/ansidecl.h --- > ./strncasec...@objext@: $(srcdir)/strncasecmp.c $(INCDIR)/ansidecl.h 1017c1090 < ./strncmp.o: $(srcdir)/strncmp.c $(INCDIR)/ansidecl.h --- > ./strnc...@objext@: $(srcdir)/strncmp.c $(INCDIR)/ansidecl.h 1023c1096 < ./strndup.o: $(srcdir)/strndup.c $(INCDIR)/ansidecl.h --- > ./strnd...@objext@: $(srcdir)/strndup.c $(INCDIR)/ansidecl.h 1029c1102 < ./strrchr.o: $(srcdir)/strrchr.c $(INCDIR)/ansidecl.h --- > ./strrc...@objext@: $(srcdir)/strrchr.c $(INCDIR)/ansidecl.h 1035c1108 < ./strsignal.o: $(srcdir)/strsignal.c config.h $(INCDIR)/ansidecl.h \ --- > ./strsign...@objext@: $(srcdir)/strsignal.c config.h $(INCDIR)/ansidecl.h \ 1042c1115 < ./strstr.o: $(srcdir)/strstr.c --- > ./strs...@objext@: $(srcdir)/strstr.c 1048c1121 < ./strtod.o: $(srcdir)/strtod.c $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h --- > ./strt...@objext@: $(srcdir)/strtod.c $(INCDIR)/ansidecl.h > $(INCDIR)/safe-ctype.h 1054c1127 < ./strtol.o: $(srcdir)/strtol.c config.h $(INCDIR)/safe-ctype.h --- > ./strt...@objext@: $(srcdir)/strtol.c config.h $(INCDIR)/safe-ctype.h 1060c1133 < ./strtoul.o: $(srcdir)/strtoul.c config.h $(INCDIR)/ansidecl.h \ --- > ./strto...@objext@: $(srcdir)/strtoul.c config.h $(INCDIR)/ansidecl.h \ 1067c1140 < ./strverscmp.o: $(srcdir)/strverscmp.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ --- > ./strversc...@objext@: $(srcdir)/strverscmp.c $(INCDIR)/ansidecl.h > $(INCDIR)/libiberty.h \ 1074c1147 < ./tmpnam.o: $(srcdir)/tmpnam.c --- > ./tmpn...@objext@: $(srcdir)/tmpnam.c 1080c1153 < ./unlink-if-ordinary.o: $(srcdir)/unlink-if-ordinary.c config.h \ --- > ./unlink-if-ordina...@objext@: $(srcdir)/unlink-if-ordinary.c config.h \ 1087c1160 < ./vasprintf.o: $(srcdir)/vasprintf.c config.h $(INCDIR)/ansidecl.h \ --- > ./vasprin...@objext@: $(srcdir)/vasprintf.c config.h $(INCDIR)/ansidecl.h \ 1094c1167 < ./vfork.o: $(srcdir)/vfork.c $(INCDIR)/ansidecl.h --- > ./vfo...@objext@: $(srcdir)/vfork.c $(INCDIR)/ansidecl.h 1100c1173 < ./vfprintf.o: $(srcdir)/vfprintf.c $(INCDIR)/ansidecl.h --- > ./vfprin...@objext@: $(srcdir)/vfprintf.c $(INCDIR)/ansidecl.h 1106c1179 < ./vprintf.o: $(srcdir)/vprintf.c $(INCDIR)/ansidecl.h --- > ./vprin...@objext@: $(srcdir)/vprintf.c $(INCDIR)/ansidecl.h 1112c1185 < ./vsnprintf.o: $(srcdir)/vsnprintf.c config.h $(INCDIR)/ansidecl.h \ --- > ./vsnprin...@objext@: $(srcdir)/vsnprintf.c config.h $(INCDIR)/ansidecl.h \ 1119c1192 < ./vsprintf.o: $(srcdir)/vsprintf.c $(INCDIR)/ansidecl.h --- > ./vsprin...@objext@: $(srcdir)/vsprintf.c $(INCDIR)/ansidecl.h 1125c1198 < ./waitpid.o: $(srcdir)/waitpid.c config.h $(INCDIR)/ansidecl.h --- > ./waitp...@objext@: $(srcdir)/waitpid.c config.h $(INCDIR)/ansidecl.h 1131c1204 < ./xatexit.o: $(srcdir)/xatexit.c config.h $(INCDIR)/ansidecl.h \ --- > ./xatex...@objext@: $(srcdir)/xatexit.c config.h $(INCDIR)/ansidecl.h \ 1138c1211 < ./xexit.o: $(srcdir)/xexit.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h --- > ./xex...@objext@: $(srcdir)/xexit.c config.h $(INCDIR)/ansidecl.h > $(INCDIR)/libiberty.h 1144c1217 < ./xmalloc.o: $(srcdir)/xmalloc.c config.h $(INCDIR)/ansidecl.h \ --- > ./xmall...@objext@: $(srcdir)/xmalloc.c config.h $(INCDIR)/ansidecl.h \ 1151c1224 < ./xmemdup.o: $(srcdir)/xmemdup.c config.h $(INCDIR)/ansidecl.h \ --- > ./xmemd...@objext@: $(srcdir)/xmemdup.c config.h $(INCDIR)/ansidecl.h \ 1158c1231 < ./xstrdup.o: $(srcdir)/xstrdup.c config.h $(INCDIR)/ansidecl.h \ --- > ./xstrd...@objext@: $(srcdir)/xstrdup.c config.h $(INCDIR)/ansidecl.h \ 1165c1238 < ./xstrerror.o: $(srcdir)/xstrerror.c config.h $(INCDIR)/ansidecl.h \ --- > ./xstrerr...@objext@: $(srcdir)/xstrerror.c config.h $(INCDIR)/ansidecl.h \ 1172c1245 < ./xstrndup.o: $(srcdir)/xstrndup.c config.h $(INCDIR)/ansidecl.h \ --- > ./xstrnd...@objext@: $(srcdir)/xstrndup.c config.h $(INCDIR)/ansidecl.h \