1# Makefile for the libiberty library. 2# Originally written by K. Richard Pixley <rich@cygnus.com>. 3# 4# Copyright (C) 1990-2020 Free Software Foundation, Inc. 5# 6# This file is part of the libiberty library. 7# Libiberty is free software; you can redistribute it and/or 8# modify it under the terms of the GNU Library General Public 9# License as published by the Free Software Foundation; either 10# version 2 of the License, or (at your option) any later version. 11# 12# Libiberty is distributed in the hope that it will be useful, 13# but WITHOUT ANY WARRANTY; without even the implied warranty of 14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15# Library General Public License for more details. 16# 17# You should have received a copy of the GNU Library General Public 18# License along with libiberty; see the file COPYING.LIB. If not, 19# write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, 20# Boston, MA 02110-1301, USA. 21 22libiberty_topdir = @libiberty_topdir@ 23srcdir = @srcdir@ 24 25prefix = @prefix@ 26 27exec_prefix = @exec_prefix@ 28bindir = @bindir@ 29libdir = @libdir@ 30includedir = @includedir@ 31target_header_dir = @target_header_dir@ 32objext = @OBJEXT@ 33 34SHELL = @SHELL@ 35 36# Multilib support variables. 37MULTISRCTOP = 38MULTIBUILDTOP = 39MULTIDIRS = 40MULTISUBDIR = 41MULTIDO = true 42MULTICLEAN = true 43 44INSTALL = @INSTALL@ 45INSTALL_PROGRAM = @INSTALL_PROGRAM@ 46INSTALL_DATA = @INSTALL_DATA@ 47mkinstalldirs = $(SHELL) $(libiberty_topdir)/mkinstalldirs 48 49# Some compilers can't handle cc -c blah.c -o foo/blah.o. 50OUTPUT_OPTION = @OUTPUT_OPTION@ 51 52AR = @AR@ 53AR_FLAGS = rc 54 55CC = @CC@ 56CFLAGS = @CFLAGS@ 57CPPFLAGS = @CPPFLAGS@ 58RANLIB = @RANLIB@ 59MAKEINFO = @MAKEINFO@ 60PERL = @PERL@ 61 62PICFLAG = @PICFLAG@ 63NOASANFLAG = @NOASANFLAG@ 64 65MAKEOVERRIDES = 66 67TARGETLIB = ./libiberty.a 68TESTLIB = ./testlib.a 69 70LIBOBJS = @LIBOBJS@ 71 72# A configuration can specify extra .o files that should be included, 73# even if they are in libc. (Perhaps the libc version is buggy.) 74EXTRA_OFILES = 75 76# Flags to pass to a recursive make. 77FLAGS_TO_PASS = \ 78 "AR=$(AR)" \ 79 "AR_FLAGS=$(AR_FLAGS)" \ 80 "CC=$(CC)" \ 81 "CFLAGS=$(CFLAGS)" \ 82 "CPPFLAGS=$(CPPFLAGS)" \ 83 "DESTDIR=$(DESTDIR)" \ 84 "EXTRA_OFILES=$(EXTRA_OFILES)" \ 85 "HDEFINES=$(HDEFINES)" \ 86 "INSTALL=$(INSTALL)" \ 87 "INSTALL_DATA=$(INSTALL_DATA)" \ 88 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ 89 "LDFLAGS=$(LDFLAGS)" \ 90 "LOADLIBES=$(LOADLIBES)" \ 91 "RANLIB=$(RANLIB)" \ 92 "SHELL=$(SHELL)" \ 93 "prefix=$(prefix)" \ 94 "exec_prefix=$(exec_prefix)" \ 95 "libdir=$(libdir)" \ 96 "libsubdir=$(libsubdir)" \ 97 "tooldir=$(tooldir)" 98 99# Subdirectories to recurse into. We need to override this during cleaning 100SUBDIRS = 101 102# FIXME: add @BUILD_INFO@ once we're sure it works for everyone. 103all: stamp-picdir stamp-noasandir $(TARGETLIB) required-list all-subdir 104 @: $(MAKE) ; $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all 105 106.PHONY: check installcheck 107check: check-subdir 108installcheck: installcheck-subdir 109 110@host_makefile_frag@ 111 112INCDIR=$(srcdir)/$(MULTISRCTOP)../include 113 114COMPILE.c = $(CC) -c @DEFS@ $(CFLAGS) $(CPPFLAGS) -I. -I$(INCDIR) \ 115 $(HDEFINES) @ac_libiberty_warn_cflags@ -D_GNU_SOURCE \ 116 @CET_HOST_FLAGS@ 117 118# Just to make sure we don't use a built-in rule with VPATH 119.c.$(objext): 120 false 121 122# NOTE: If you add new files to the library, add them to this list 123# (alphabetical), and add them to REQUIRED_OFILES, or 124# CONFIGURED_OFILES and funcs in configure.ac. Also run "make maint-deps" 125# to build the new rules. 126CFILES = alloca.c argv.c asprintf.c atexit.c \ 127 basename.c bcmp.c bcopy.c bsearch.c bzero.c \ 128 calloc.c choose-temp.c clock.c concat.c cp-demangle.c \ 129 cp-demint.c cplus-dem.c crc32.c \ 130 d-demangle.c dwarfnames.c dyn-string.c \ 131 fdmatch.c ffs.c fibheap.c filedescriptor.c filename_cmp.c floatformat.c \ 132 fnmatch.c fopen_unlocked.c \ 133 getcwd.c getopt.c getopt1.c getpagesize.c getpwd.c getruntime.c \ 134 gettimeofday.c \ 135 hashtab.c hex.c \ 136 index.c insque.c \ 137 lbasename.c \ 138 lrealpath.c \ 139 make-relative-prefix.c \ 140 make-temp-file.c md5.c memchr.c memcmp.c memcpy.c memmem.c \ 141 memmove.c mempcpy.c memset.c mkstemps.c \ 142 objalloc.c obstack.c \ 143 partition.c pexecute.c \ 144 pex-common.c pex-djgpp.c pex-msdos.c pex-one.c \ 145 pex-unix.c pex-win32.c \ 146 physmem.c putenv.c \ 147 random.c regex.c rename.c rindex.c \ 148 rust-demangle.c \ 149 safe-ctype.c setenv.c setproctitle.c sha1.c sigsetmask.c \ 150 simple-object.c simple-object-coff.c simple-object-elf.c \ 151 simple-object-mach-o.c simple-object-xcoff.c \ 152 snprintf.c sort.c \ 153 spaces.c splay-tree.c stack-limit.c stpcpy.c stpncpy.c \ 154 strcasecmp.c strchr.c strdup.c strerror.c strncasecmp.c \ 155 strncmp.c strrchr.c strsignal.c strstr.c strtod.c strtol.c \ 156 strtoll.c strtoul.c strtoull.c strndup.c strnlen.c \ 157 strverscmp.c timeval-utils.c tmpnam.c \ 158 unlink-if-ordinary.c \ 159 vasprintf.c vfork.c vfprintf.c vprintf.c vprintf-support.c \ 160 vsnprintf.c vsprintf.c \ 161 waitpid.c \ 162 xasprintf.c xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c \ 163 xstrerror.c xstrndup.c xvasprintf.c 164 165# These are always included in the library. The first four are listed 166# first and by compile time to optimize parallel builds. 167REQUIRED_OFILES = \ 168 ./regex.$(objext) ./cplus-dem.$(objext) ./cp-demangle.$(objext) \ 169 ./md5.$(objext) ./sha1.$(objext) ./alloca.$(objext) \ 170 ./argv.$(objext) \ 171 ./choose-temp.$(objext) ./concat.$(objext) \ 172 ./cp-demint.$(objext) ./crc32.$(objext) ./d-demangle.$(objext) \ 173 ./dwarfnames.$(objext) ./dyn-string.$(objext) \ 174 ./fdmatch.$(objext) ./fibheap.$(objext) \ 175 ./filedescriptor.$(objext) \ 176 ./filename_cmp.$(objext) ./floatformat.$(objext) \ 177 ./fnmatch.$(objext) ./fopen_unlocked.$(objext) \ 178 ./getopt.$(objext) ./getopt1.$(objext) ./getpwd.$(objext) \ 179 ./getruntime.$(objext) ./hashtab.$(objext) ./hex.$(objext) \ 180 ./lbasename.$(objext) ./lrealpath.$(objext) \ 181 ./make-relative-prefix.$(objext) ./make-temp-file.$(objext) \ 182 ./objalloc.$(objext) \ 183 ./obstack.$(objext) \ 184 ./partition.$(objext) ./pexecute.$(objext) ./physmem.$(objext) \ 185 ./pex-common.$(objext) ./pex-one.$(objext) \ 186 ./@pexecute@.$(objext) ./vprintf-support.$(objext) \ 187 ./rust-demangle.$(objext) \ 188 ./safe-ctype.$(objext) \ 189 ./simple-object.$(objext) ./simple-object-coff.$(objext) \ 190 ./simple-object-elf.$(objext) ./simple-object-mach-o.$(objext) \ 191 ./simple-object-xcoff.$(objext) \ 192 ./sort.$(objext) ./spaces.$(objext) \ 193 ./splay-tree.$(objext) ./stack-limit.$(objext) \ 194 ./strerror.$(objext) ./strsignal.$(objext) \ 195 ./timeval-utils.$(objext) ./unlink-if-ordinary.$(objext) \ 196 ./xasprintf.$(objext) ./xatexit.$(objext) ./xexit.$(objext) \ 197 ./xmalloc.$(objext) ./xmemdup.$(objext) ./xstrdup.$(objext) \ 198 ./xstrerror.$(objext) ./xstrndup.$(objext) \ 199 ./xvasprintf.$(objext) 200 201# These are all the objects that configure may add to the library via 202# $funcs or EXTRA_OFILES. This list exists here only for "make 203# maint-missing" and "make check". 204CONFIGURED_OFILES = ./asprintf.$(objext) ./atexit.$(objext) \ 205 ./basename.$(objext) ./bcmp.$(objext) ./bcopy.$(objext) \ 206 ./bsearch.$(objext) ./bzero.$(objext) \ 207 ./calloc.$(objext) ./clock.$(objext) ./copysign.$(objext) \ 208 ./_doprnt.$(objext) \ 209 ./ffs.$(objext) \ 210 ./getcwd.$(objext) ./getpagesize.$(objext) \ 211 ./gettimeofday.$(objext) \ 212 ./index.$(objext) ./insque.$(objext) \ 213 ./memchr.$(objext) ./memcmp.$(objext) ./memcpy.$(objext) \ 214 ./memmem.$(objext) ./memmove.$(objext) \ 215 ./mempcpy.$(objext) ./memset.$(objext) ./mkstemps.$(objext) \ 216 ./pex-djgpp.$(objext) ./pex-msdos.$(objext) \ 217 ./pex-unix.$(objext) ./pex-win32.$(objext) \ 218 ./putenv.$(objext) \ 219 ./random.$(objext) ./rename.$(objext) ./rindex.$(objext) \ 220 ./setenv.$(objext) \ 221 ./setproctitle.$(objext) \ 222 ./sigsetmask.$(objext) ./snprintf.$(objext) \ 223 ./stpcpy.$(objext) ./stpncpy.$(objext) ./strcasecmp.$(objext) \ 224 ./strchr.$(objext) ./strdup.$(objext) ./strncasecmp.$(objext) \ 225 ./strncmp.$(objext) ./strndup.$(objext) ./strnlen.$(objext) \ 226 ./strrchr.$(objext) ./strstr.$(objext) ./strtod.$(objext) \ 227 ./strtol.$(objext) ./strtoul.$(objext) strtoll.$(objext) \ 228 ./strtoull.$(objext) ./tmpnam.$(objext) ./strverscmp.$(objext) \ 229 ./vasprintf.$(objext) ./vfork.$(objext) ./vfprintf.$(objext) \ 230 ./vprintf.$(objext) ./vsnprintf.$(objext) ./vsprintf.$(objext) \ 231 ./waitpid.$(objext) 232 233# These files are installed if the library has been configured to do so. 234INSTALLED_HEADERS = \ 235 $(INCDIR)/ansidecl.h \ 236 $(INCDIR)/demangle.h \ 237 $(INCDIR)/dyn-string.h \ 238 $(INCDIR)/fibheap.h \ 239 $(INCDIR)/floatformat.h \ 240 $(INCDIR)/hashtab.h \ 241 $(INCDIR)/libiberty.h \ 242 $(INCDIR)/objalloc.h \ 243 $(INCDIR)/partition.h \ 244 $(INCDIR)/safe-ctype.h \ 245 $(INCDIR)/sort.h \ 246 $(INCDIR)/splay-tree.h \ 247 $(INCDIR)/timeval-utils.h 248 249$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) 250 -rm -f $(TARGETLIB) pic/$(TARGETLIB) noasan/$(TARGETLIB) 251 $(AR) $(AR_FLAGS) $(TARGETLIB) \ 252 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS) 253 $(RANLIB) $(TARGETLIB) 254 if [ x"$(PICFLAG)" != x ]; then \ 255 cd pic; \ 256 $(AR) $(AR_FLAGS) $(TARGETLIB) \ 257 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \ 258 $(RANLIB) $(TARGETLIB); \ 259 cd ..; \ 260 else true; fi; \ 261 if [ x"$(NOASANFLAG)" != x ]; then \ 262 cd noasan; \ 263 $(AR) $(AR_FLAGS) $(TARGETLIB) \ 264 $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \ 265 $(RANLIB) $(TARGETLIB); \ 266 cd ..; \ 267 else true; fi 268 269$(TESTLIB): $(REQUIRED_OFILES) $(CONFIGURED_OFILES) 270 -rm -f $(TESTLIB) 271 $(AR) $(AR_FLAGS) $(TESTLIB) \ 272 $(REQUIRED_OFILES) $(CONFIGURED_OFILES) 273 $(RANLIB) $(TESTLIB) 274 275info: libiberty.info info-subdir 276install-info: install-info-subdir 277clean-info: clean-info-subdir 278dvi: libiberty.dvi dvi-subdir 279 280LIBIBERTY_PDFFILES = libiberty.pdf 281 282pdf: $(LIBIBERTY_PDFFILES) pdf-subdir 283 284.PHONY: install-pdf 285 286pdf__strip_dir = `echo $$p | sed -e 's|^.*/||'`; 287 288install-pdf: $(LIBIBERTY_PDFFILES) 289 @$(NORMAL_INSTALL) 290 test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)" 291 @list='$(LIBIBERTY_PDFFILES)'; for p in $$list; do \ 292 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ 293 f=$(pdf__strip_dir) \ 294 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \ 295 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \ 296 done 297 298# html, install-html targets 299HTMLS = libiberty.html 300 301html: $(HTMLS) 302 303.PHONY: install-html install-html-am 304 305NORMAL_INSTALL = : 306mkdir_p = mkdir -p -- 307 308html__strip_dir = `echo $$p | sed -e 's|^.*/||'`; 309 310install-html: install-html-am 311 312install-html-am: $(HTMLS) 313 @$(NORMAL_INSTALL) 314 test -z "$(htmldir)" || $(mkdir_p) "$(DESTDIR)$(htmldir)" 315 @list='$(HTMLS)'; for p in $$list; do \ 316 if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \ 317 f=$(html__strip_dir) \ 318 if test -d "$$d$$p"; then \ 319 echo " $(mkdir_p) '$(DESTDIR)$(htmldir)/$$f'"; \ 320 $(mkdir_p) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \ 321 echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \ 322 $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \ 323 else \ 324 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \ 325 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \ 326 fi; \ 327 done 328 329TEXISRC = \ 330 $(srcdir)/libiberty.texi \ 331 $(srcdir)/copying-lib.texi \ 332 $(srcdir)/obstacks.texi \ 333 $(srcdir)/functions.texi 334 335# Additional files that have texi snippets that need to be collected 336# and sorted. Some are here because the sources are imported from 337# elsewhere. Others represent headers in ../include. 338TEXIFILES = fnmatch.txh pexecute.txh simple-object.txh 339 340libiberty.info : $(srcdir)/libiberty.texi $(TEXISRC) 341 $(MAKEINFO) -I$(srcdir) $(srcdir)/libiberty.texi 342 343libiberty.dvi : $(srcdir)/libiberty.texi $(TEXISRC) 344 texi2dvi $(srcdir)/libiberty.texi 345 346libiberty.pdf : $(srcdir)/libiberty.texi $(TEXISRC) 347 texi2pdf $(srcdir)/libiberty.texi 348 349libiberty.html : $(srcdir)/libiberty.texi $(TEXISRC) 350 $(MAKEINFO) --no-split --html -I$(srcdir) -o $@ $< 351 352@MAINT@$(srcdir)/functions.texi : stamp-functions 353@MAINT@ @true 354 355@MAINT@stamp-functions : $(CFILES:%=$(srcdir)/%) $(TEXIFILES:%=$(srcdir)/%) $(srcdir)/gather-docs Makefile 356@MAINT@@HAVE_PERL@ $(PERL) $(srcdir)/gather-docs $(srcdir) $(srcdir)/functions.texi $(CFILES) $(TEXIFILES) 357@MAINT@ echo stamp > stamp-functions 358 359INSTALL_DEST = @INSTALL_DEST@ 360install: install_to_$(INSTALL_DEST) install-subdir 361install-strip: install 362 363.PHONY: install install-strip 364 365# This is tricky. Even though CC in the Makefile contains 366# multilib-specific flags, it's overridden by FLAGS_TO_PASS from the 367# default multilib, so we have to take CFLAGS into account as well, 368# since it will be passed the multilib flags. 369MULTIOSDIR = `$(CC) $(CFLAGS) -print-multi-os-directory` 370install_to_libdir: all 371 if test -n "${target_header_dir}"; then \ 372 ${mkinstalldirs} $(DESTDIR)$(libdir)/$(MULTIOSDIR); \ 373 $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n; \ 374 ( cd $(DESTDIR)$(libdir)/$(MULTIOSDIR) ; chmod 644 $(TARGETLIB)n ;$(RANLIB) $(TARGETLIB)n ); \ 375 mv -f $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB); \ 376 case "${target_header_dir}" in \ 377 /*) thd=${target_header_dir};; \ 378 *) thd=${includedir}/${target_header_dir};; \ 379 esac; \ 380 ${mkinstalldirs} $(DESTDIR)$${thd}; \ 381 for h in ${INSTALLED_HEADERS}; do \ 382 ${INSTALL_DATA} $$h $(DESTDIR)$${thd}; \ 383 done; \ 384 fi 385 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install 386 387install_to_tooldir: all 388 ${mkinstalldirs} $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR) 389 $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n 390 ( cd $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR) ; chmod 644 $(TARGETLIB)n; $(RANLIB) $(TARGETLIB)n ) 391 mv -f $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB) 392 @$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install 393 394# required-list was used when building a shared bfd/opcodes/libiberty 395# library. I don't know if it used by anything currently. 396required-list: Makefile 397 echo $(REQUIRED_OFILES) > required-list 398 399stamp-picdir: 400 if [ x"$(PICFLAG)" != x ] && [ ! -d pic ]; then \ 401 mkdir pic; \ 402 else true; fi 403 touch stamp-picdir 404 405stamp-noasandir: 406 if [ x"$(NOASANFLAG)" != x ] && [ ! -d noasan ]; then \ 407 mkdir noasan; \ 408 else true; fi 409 touch stamp-noasandir 410 411.PHONY: all etags tags TAGS ls clean stage1 stage2 412 413etags tags TAGS: etags-subdir 414 cd $(srcdir) && etags $(CFILES) 415 416# The standalone demangler (c++filt) has been moved to binutils. 417# But make this target work anyway for demangler hacking. 418demangle: $(ALL) $(srcdir)/cp-demangle.c 419 @echo "The standalone demangler, now named c++filt, is now" 420 @echo "a part of binutils." 421 $(CC) @DEFS@ $(CFLAGS) $(CPPFLAGS) -I. -I$(INCDIR) $(HDEFINES) \ 422 $(srcdir)/cp-demangle.c -DSTANDALONE_DEMANGLER $(TARGETLIB) -o $@ 423 424ls: 425 @echo Makefile $(CFILES) 426 427# Various targets for maintainers. 428 429maint-missing : 430 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) missing $(CFILES) $(REQUIRED_OFILES) $(CONFIGURED_OFILES) 431 432maint-buildall : $(REQUIRED_OFILES) $(CONFIGURED_OFILES) 433 @true 434 435maint-undoc : $(srcdir)/functions.texi 436 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) undoc 437 438maint-deps : 439 @$(PERL) $(srcdir)/maint-tool -s $(srcdir) deps $(INCDIR) 440 441# Need to deal with profiled libraries, too. 442 443# Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS 444# multiple times, hence our explicit recursion with an empty SUBDIRS. 445mostlyclean: mostlyclean-subdir 446 -rm -rf *.$(objext) pic noasan core errs \#* *.E a.out 447 -rm -f errors dummy config.h stamp-* 448 -rm -f $(CONFIG_H) stamp-picdir stamp-noasandir 449 -rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky 450 -rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg 451 -rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr 452 -rm -f libtexi.stamp 453 @$(MULTICLEAN) multi-clean DO=mostlyclean 454clean: clean-subdir 455 $(MAKE) SUBDIRS="" mostlyclean 456 -rm -f *.a required-list tmpmulti.out 457 -rm -f libiberty.dvi libiberty.pdf libiberty.info* libiberty.html 458 @$(MULTICLEAN) multi-clean DO=clean 459distclean: distclean-subdir 460 $(MAKE) SUBDIRS="" clean 461 @$(MULTICLEAN) multi-clean DO=distclean 462 -rm -f *~ Makefile config.cache config.status xhost-mkfrag TAGS multilib.out 463 -rm -f config.log 464maintainer-clean realclean: maintainer-clean-subdir 465 $(MAKE) SUBDIRS="" distclean 466 467force: 468 469Makefile: $(srcdir)/Makefile.in config.status 470 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status 471 472# Depending on Makefile makes sure that config.status has been re-run 473# if needed. This prevents problems with parallel builds. 474config.h: stamp-h ; @true 475stamp-h: $(srcdir)/config.in config.status Makefile 476 CONFIG_FILES= CONFIG_HEADERS=config.h:$(srcdir)/config.in $(SHELL) ./config.status 477 478config.status: $(srcdir)/configure 479 $(SHELL) ./config.status --recheck 480 481AUTOCONF = autoconf 482configure_deps = $(srcdir)/aclocal.m4 \ 483 $(srcdir)/../config/acx.m4 \ 484 $(srcdir)/../config/cet.m4 \ 485 $(srcdir)/../config/enable.m4 \ 486 $(srcdir)/../config/no-executables.m4 \ 487 $(srcdir)/../config/override.m4 \ 488 $(srcdir)/../config/picflag.m4 \ 489 $(srcdir)/../config/warnings.m4 490 491$(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(configure_deps) 492 cd $(srcdir) && $(AUTOCONF) 493 494# Depending on config.h makes sure that config.status has been re-run 495# if needed. This prevents problems with parallel builds, in case 496# subdirectories need to run config.status also. 497all-subdir check-subdir installcheck-subdir info-subdir \ 498install-info-subdir clean-info-subdir dvi-subdir pdf-subdir install-subdir \ 499etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \ 500maintainer-clean-subdir: config.h 501 @subdirs='$(SUBDIRS)'; \ 502 target=`echo $@ | sed -e 's/-subdir//'`; \ 503 for dir in $$subdirs ; do \ 504 cd $$dir && $(MAKE) $(FLAGS_TO_PASS) $$target; \ 505 done 506 507$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir stamp-noasandir 508$(CONFIGURED_OFILES): stamp-picdir stamp-noasandir 509 510# Don't export variables to the environment, in order to not confuse 511# configure. 512.NOEXPORT: 513 514# The dependencies in the remainder of this file are automatically 515# generated by "make maint-deps". Manual edits will be lost. 516 517./_doprnt.$(objext): $(srcdir)/_doprnt.c config.h $(INCDIR)/ansidecl.h \ 518 $(INCDIR)/safe-ctype.h 519 if [ x"$(PICFLAG)" != x ]; then \ 520 $(COMPILE.c) $(PICFLAG) $(srcdir)/_doprnt.c -o pic/$@; \ 521 else true; fi 522 if [ x"$(NOASANFLAG)" != x ]; then \ 523 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/_doprnt.c -o noasan/$@; \ 524 else true; fi 525 $(COMPILE.c) $(srcdir)/_doprnt.c $(OUTPUT_OPTION) 526 527./alloca.$(objext): $(srcdir)/alloca.c config.h $(INCDIR)/ansidecl.h \ 528 $(INCDIR)/libiberty.h 529 if [ x"$(PICFLAG)" != x ]; then \ 530 $(COMPILE.c) $(PICFLAG) $(srcdir)/alloca.c -o pic/$@; \ 531 else true; fi 532 if [ x"$(NOASANFLAG)" != x ]; then \ 533 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/alloca.c -o noasan/$@; \ 534 else true; fi 535 $(COMPILE.c) $(srcdir)/alloca.c $(OUTPUT_OPTION) 536 537./argv.$(objext): $(srcdir)/argv.c config.h $(INCDIR)/ansidecl.h \ 538 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h 539 if [ x"$(PICFLAG)" != x ]; then \ 540 $(COMPILE.c) $(PICFLAG) $(srcdir)/argv.c -o pic/$@; \ 541 else true; fi 542 if [ x"$(NOASANFLAG)" != x ]; then \ 543 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/argv.c -o noasan/$@; \ 544 else true; fi 545 $(COMPILE.c) $(srcdir)/argv.c $(OUTPUT_OPTION) 546 547./asprintf.$(objext): $(srcdir)/asprintf.c config.h $(INCDIR)/ansidecl.h \ 548 $(INCDIR)/libiberty.h 549 if [ x"$(PICFLAG)" != x ]; then \ 550 $(COMPILE.c) $(PICFLAG) $(srcdir)/asprintf.c -o pic/$@; \ 551 else true; fi 552 if [ x"$(NOASANFLAG)" != x ]; then \ 553 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/asprintf.c -o noasan/$@; \ 554 else true; fi 555 $(COMPILE.c) $(srcdir)/asprintf.c $(OUTPUT_OPTION) 556 557./atexit.$(objext): $(srcdir)/atexit.c config.h 558 if [ x"$(PICFLAG)" != x ]; then \ 559 $(COMPILE.c) $(PICFLAG) $(srcdir)/atexit.c -o pic/$@; \ 560 else true; fi 561 if [ x"$(NOASANFLAG)" != x ]; then \ 562 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/atexit.c -o noasan/$@; \ 563 else true; fi 564 $(COMPILE.c) $(srcdir)/atexit.c $(OUTPUT_OPTION) 565 566./basename.$(objext): $(srcdir)/basename.c config.h $(INCDIR)/ansidecl.h \ 567 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h 568 if [ x"$(PICFLAG)" != x ]; then \ 569 $(COMPILE.c) $(PICFLAG) $(srcdir)/basename.c -o pic/$@; \ 570 else true; fi 571 if [ x"$(NOASANFLAG)" != x ]; then \ 572 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/basename.c -o noasan/$@; \ 573 else true; fi 574 $(COMPILE.c) $(srcdir)/basename.c $(OUTPUT_OPTION) 575 576./bcmp.$(objext): $(srcdir)/bcmp.c 577 if [ x"$(PICFLAG)" != x ]; then \ 578 $(COMPILE.c) $(PICFLAG) $(srcdir)/bcmp.c -o pic/$@; \ 579 else true; fi 580 if [ x"$(NOASANFLAG)" != x ]; then \ 581 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bcmp.c -o noasan/$@; \ 582 else true; fi 583 $(COMPILE.c) $(srcdir)/bcmp.c $(OUTPUT_OPTION) 584 585./bcopy.$(objext): $(srcdir)/bcopy.c 586 if [ x"$(PICFLAG)" != x ]; then \ 587 $(COMPILE.c) $(PICFLAG) $(srcdir)/bcopy.c -o pic/$@; \ 588 else true; fi 589 if [ x"$(NOASANFLAG)" != x ]; then \ 590 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bcopy.c -o noasan/$@; \ 591 else true; fi 592 $(COMPILE.c) $(srcdir)/bcopy.c $(OUTPUT_OPTION) 593 594./bsearch.$(objext): $(srcdir)/bsearch.c config.h $(INCDIR)/ansidecl.h 595 if [ x"$(PICFLAG)" != x ]; then \ 596 $(COMPILE.c) $(PICFLAG) $(srcdir)/bsearch.c -o pic/$@; \ 597 else true; fi 598 if [ x"$(NOASANFLAG)" != x ]; then \ 599 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bsearch.c -o noasan/$@; \ 600 else true; fi 601 $(COMPILE.c) $(srcdir)/bsearch.c $(OUTPUT_OPTION) 602 603./bzero.$(objext): $(srcdir)/bzero.c 604 if [ x"$(PICFLAG)" != x ]; then \ 605 $(COMPILE.c) $(PICFLAG) $(srcdir)/bzero.c -o pic/$@; \ 606 else true; fi 607 if [ x"$(NOASANFLAG)" != x ]; then \ 608 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bzero.c -o noasan/$@; \ 609 else true; fi 610 $(COMPILE.c) $(srcdir)/bzero.c $(OUTPUT_OPTION) 611 612./calloc.$(objext): $(srcdir)/calloc.c $(INCDIR)/ansidecl.h 613 if [ x"$(PICFLAG)" != x ]; then \ 614 $(COMPILE.c) $(PICFLAG) $(srcdir)/calloc.c -o pic/$@; \ 615 else true; fi 616 if [ x"$(NOASANFLAG)" != x ]; then \ 617 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/calloc.c -o noasan/$@; \ 618 else true; fi 619 $(COMPILE.c) $(srcdir)/calloc.c $(OUTPUT_OPTION) 620 621./choose-temp.$(objext): $(srcdir)/choose-temp.c config.h $(INCDIR)/ansidecl.h \ 622 $(INCDIR)/libiberty.h 623 if [ x"$(PICFLAG)" != x ]; then \ 624 $(COMPILE.c) $(PICFLAG) $(srcdir)/choose-temp.c -o pic/$@; \ 625 else true; fi 626 if [ x"$(NOASANFLAG)" != x ]; then \ 627 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/choose-temp.c -o noasan/$@; \ 628 else true; fi 629 $(COMPILE.c) $(srcdir)/choose-temp.c $(OUTPUT_OPTION) 630 631./clock.$(objext): $(srcdir)/clock.c config.h 632 if [ x"$(PICFLAG)" != x ]; then \ 633 $(COMPILE.c) $(PICFLAG) $(srcdir)/clock.c -o pic/$@; \ 634 else true; fi 635 if [ x"$(NOASANFLAG)" != x ]; then \ 636 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/clock.c -o noasan/$@; \ 637 else true; fi 638 $(COMPILE.c) $(srcdir)/clock.c $(OUTPUT_OPTION) 639 640./concat.$(objext): $(srcdir)/concat.c config.h $(INCDIR)/ansidecl.h \ 641 $(INCDIR)/libiberty.h 642 if [ x"$(PICFLAG)" != x ]; then \ 643 $(COMPILE.c) $(PICFLAG) $(srcdir)/concat.c -o pic/$@; \ 644 else true; fi 645 if [ x"$(NOASANFLAG)" != x ]; then \ 646 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/concat.c -o noasan/$@; \ 647 else true; fi 648 $(COMPILE.c) $(srcdir)/concat.c $(OUTPUT_OPTION) 649 650./copysign.$(objext): $(srcdir)/copysign.c $(INCDIR)/ansidecl.h 651 if [ x"$(PICFLAG)" != x ]; then \ 652 $(COMPILE.c) $(PICFLAG) $(srcdir)/copysign.c -o pic/$@; \ 653 else true; fi 654 if [ x"$(NOASANFLAG)" != x ]; then \ 655 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/copysign.c -o noasan/$@; \ 656 else true; fi 657 $(COMPILE.c) $(srcdir)/copysign.c $(OUTPUT_OPTION) 658 659./cp-demangle.$(objext): $(srcdir)/cp-demangle.c config.h $(INCDIR)/ansidecl.h \ 660 $(srcdir)/cp-demangle.h $(INCDIR)/demangle.h \ 661 $(INCDIR)/dyn-string.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h 662 if [ x"$(PICFLAG)" != x ]; then \ 663 $(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demangle.c -o pic/$@; \ 664 else true; fi 665 if [ x"$(NOASANFLAG)" != x ]; then \ 666 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/cp-demangle.c -o noasan/$@; \ 667 else true; fi 668 $(COMPILE.c) $(srcdir)/cp-demangle.c $(OUTPUT_OPTION) 669 670./cp-demint.$(objext): $(srcdir)/cp-demint.c config.h $(INCDIR)/ansidecl.h \ 671 $(srcdir)/cp-demangle.h $(INCDIR)/demangle.h \ 672 $(INCDIR)/libiberty.h 673 if [ x"$(PICFLAG)" != x ]; then \ 674 $(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demint.c -o pic/$@; \ 675 else true; fi 676 if [ x"$(NOASANFLAG)" != x ]; then \ 677 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/cp-demint.c -o noasan/$@; \ 678 else true; fi 679 $(COMPILE.c) $(srcdir)/cp-demint.c $(OUTPUT_OPTION) 680 681./cplus-dem.$(objext): $(srcdir)/cplus-dem.c config.h $(INCDIR)/ansidecl.h \ 682 $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \ 683 $(INCDIR)/safe-ctype.h 684 if [ x"$(PICFLAG)" != x ]; then \ 685 $(COMPILE.c) $(PICFLAG) $(srcdir)/cplus-dem.c -o pic/$@; \ 686 else true; fi 687 if [ x"$(NOASANFLAG)" != x ]; then \ 688 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/cplus-dem.c -o noasan/$@; \ 689 else true; fi 690 $(COMPILE.c) $(srcdir)/cplus-dem.c $(OUTPUT_OPTION) 691 692./crc32.$(objext): $(srcdir)/crc32.c config.h $(INCDIR)/ansidecl.h \ 693 $(INCDIR)/libiberty.h 694 if [ x"$(PICFLAG)" != x ]; then \ 695 $(COMPILE.c) $(PICFLAG) $(srcdir)/crc32.c -o pic/$@; \ 696 else true; fi 697 if [ x"$(NOASANFLAG)" != x ]; then \ 698 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/crc32.c -o noasan/$@; \ 699 else true; fi 700 $(COMPILE.c) $(srcdir)/crc32.c $(OUTPUT_OPTION) 701 702./d-demangle.$(objext): $(srcdir)/d-demangle.c config.h $(INCDIR)/ansidecl.h \ 703 $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \ 704 $(INCDIR)/safe-ctype.h 705 if [ x"$(PICFLAG)" != x ]; then \ 706 $(COMPILE.c) $(PICFLAG) $(srcdir)/d-demangle.c -o pic/$@; \ 707 else true; fi 708 if [ x"$(NOASANFLAG)" != x ]; then \ 709 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/d-demangle.c -o noasan/$@; \ 710 else true; fi 711 $(COMPILE.c) $(srcdir)/d-demangle.c $(OUTPUT_OPTION) 712 713./dwarfnames.$(objext): $(srcdir)/dwarfnames.c $(INCDIR)/dwarf2.def \ 714 $(INCDIR)/dwarf2.h 715 if [ x"$(PICFLAG)" != x ]; then \ 716 $(COMPILE.c) $(PICFLAG) $(srcdir)/dwarfnames.c -o pic/$@; \ 717 else true; fi 718 if [ x"$(NOASANFLAG)" != x ]; then \ 719 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/dwarfnames.c -o noasan/$@; \ 720 else true; fi 721 $(COMPILE.c) $(srcdir)/dwarfnames.c $(OUTPUT_OPTION) 722 723./dyn-string.$(objext): $(srcdir)/dyn-string.c config.h $(INCDIR)/ansidecl.h \ 724 $(INCDIR)/dyn-string.h $(INCDIR)/libiberty.h 725 if [ x"$(PICFLAG)" != x ]; then \ 726 $(COMPILE.c) $(PICFLAG) $(srcdir)/dyn-string.c -o pic/$@; \ 727 else true; fi 728 if [ x"$(NOASANFLAG)" != x ]; then \ 729 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/dyn-string.c -o noasan/$@; \ 730 else true; fi 731 $(COMPILE.c) $(srcdir)/dyn-string.c $(OUTPUT_OPTION) 732 733./fdmatch.$(objext): $(srcdir)/fdmatch.c config.h $(INCDIR)/ansidecl.h \ 734 $(INCDIR)/libiberty.h 735 if [ x"$(PICFLAG)" != x ]; then \ 736 $(COMPILE.c) $(PICFLAG) $(srcdir)/fdmatch.c -o pic/$@; \ 737 else true; fi 738 if [ x"$(NOASANFLAG)" != x ]; then \ 739 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fdmatch.c -o noasan/$@; \ 740 else true; fi 741 $(COMPILE.c) $(srcdir)/fdmatch.c $(OUTPUT_OPTION) 742 743./ffs.$(objext): $(srcdir)/ffs.c 744 if [ x"$(PICFLAG)" != x ]; then \ 745 $(COMPILE.c) $(PICFLAG) $(srcdir)/ffs.c -o pic/$@; \ 746 else true; fi 747 if [ x"$(NOASANFLAG)" != x ]; then \ 748 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/ffs.c -o noasan/$@; \ 749 else true; fi 750 $(COMPILE.c) $(srcdir)/ffs.c $(OUTPUT_OPTION) 751 752./fibheap.$(objext): $(srcdir)/fibheap.c config.h $(INCDIR)/ansidecl.h \ 753 $(INCDIR)/fibheap.h $(INCDIR)/libiberty.h 754 if [ x"$(PICFLAG)" != x ]; then \ 755 $(COMPILE.c) $(PICFLAG) $(srcdir)/fibheap.c -o pic/$@; \ 756 else true; fi 757 if [ x"$(NOASANFLAG)" != x ]; then \ 758 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fibheap.c -o noasan/$@; \ 759 else true; fi 760 $(COMPILE.c) $(srcdir)/fibheap.c $(OUTPUT_OPTION) 761 762./filedescriptor.$(objext): $(srcdir)/filedescriptor.c config.h $(INCDIR)/ansidecl.h \ 763 $(INCDIR)/libiberty.h 764 if [ x"$(PICFLAG)" != x ]; then \ 765 $(COMPILE.c) $(PICFLAG) $(srcdir)/filedescriptor.c -o pic/$@; \ 766 else true; fi 767 if [ x"$(NOASANFLAG)" != x ]; then \ 768 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/filedescriptor.c -o noasan/$@; \ 769 else true; fi 770 $(COMPILE.c) $(srcdir)/filedescriptor.c $(OUTPUT_OPTION) 771 772 773./filename_cmp.$(objext): $(srcdir)/filename_cmp.c config.h $(INCDIR)/ansidecl.h \ 774 $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ 775 $(INCDIR)/safe-ctype.h 776 if [ x"$(PICFLAG)" != x ]; then \ 777 $(COMPILE.c) $(PICFLAG) $(srcdir)/filename_cmp.c -o pic/$@; \ 778 else true; fi 779 if [ x"$(NOASANFLAG)" != x ]; then \ 780 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/filename_cmp.c -o noasan/$@; \ 781 else true; fi 782 $(COMPILE.c) $(srcdir)/filename_cmp.c $(OUTPUT_OPTION) 783 784./floatformat.$(objext): $(srcdir)/floatformat.c config.h $(INCDIR)/ansidecl.h \ 785 $(INCDIR)/floatformat.h $(INCDIR)/libiberty.h 786 if [ x"$(PICFLAG)" != x ]; then \ 787 $(COMPILE.c) $(PICFLAG) $(srcdir)/floatformat.c -o pic/$@; \ 788 else true; fi 789 if [ x"$(NOASANFLAG)" != x ]; then \ 790 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/floatformat.c -o noasan/$@; \ 791 else true; fi 792 $(COMPILE.c) $(srcdir)/floatformat.c $(OUTPUT_OPTION) 793 794./fnmatch.$(objext): $(srcdir)/fnmatch.c config.h $(INCDIR)/fnmatch.h \ 795 $(INCDIR)/safe-ctype.h 796 if [ x"$(PICFLAG)" != x ]; then \ 797 $(COMPILE.c) $(PICFLAG) $(srcdir)/fnmatch.c -o pic/$@; \ 798 else true; fi 799 if [ x"$(NOASANFLAG)" != x ]; then \ 800 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fnmatch.c -o noasan/$@; \ 801 else true; fi 802 $(COMPILE.c) $(srcdir)/fnmatch.c $(OUTPUT_OPTION) 803 804./fopen_unlocked.$(objext): $(srcdir)/fopen_unlocked.c config.h \ 805 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h 806 if [ x"$(PICFLAG)" != x ]; then \ 807 $(COMPILE.c) $(PICFLAG) $(srcdir)/fopen_unlocked.c -o pic/$@; \ 808 else true; fi 809 if [ x"$(NOASANFLAG)" != x ]; then \ 810 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fopen_unlocked.c -o noasan/$@; \ 811 else true; fi 812 $(COMPILE.c) $(srcdir)/fopen_unlocked.c $(OUTPUT_OPTION) 813 814./getcwd.$(objext): $(srcdir)/getcwd.c config.h 815 if [ x"$(PICFLAG)" != x ]; then \ 816 $(COMPILE.c) $(PICFLAG) $(srcdir)/getcwd.c -o pic/$@; \ 817 else true; fi 818 if [ x"$(NOASANFLAG)" != x ]; then \ 819 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getcwd.c -o noasan/$@; \ 820 else true; fi 821 $(COMPILE.c) $(srcdir)/getcwd.c $(OUTPUT_OPTION) 822 823./getopt.$(objext): $(srcdir)/getopt.c config.h $(INCDIR)/ansidecl.h \ 824 $(INCDIR)/getopt.h 825 if [ x"$(PICFLAG)" != x ]; then \ 826 $(COMPILE.c) $(PICFLAG) $(srcdir)/getopt.c -o pic/$@; \ 827 else true; fi 828 if [ x"$(NOASANFLAG)" != x ]; then \ 829 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getopt.c -o noasan/$@; \ 830 else true; fi 831 $(COMPILE.c) $(srcdir)/getopt.c $(OUTPUT_OPTION) 832 833./getopt1.$(objext): $(srcdir)/getopt1.c config.h $(INCDIR)/getopt.h 834 if [ x"$(PICFLAG)" != x ]; then \ 835 $(COMPILE.c) $(PICFLAG) $(srcdir)/getopt1.c -o pic/$@; \ 836 else true; fi 837 if [ x"$(NOASANFLAG)" != x ]; then \ 838 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getopt1.c -o noasan/$@; \ 839 else true; fi 840 $(COMPILE.c) $(srcdir)/getopt1.c $(OUTPUT_OPTION) 841 842./getpagesize.$(objext): $(srcdir)/getpagesize.c config.h 843 if [ x"$(PICFLAG)" != x ]; then \ 844 $(COMPILE.c) $(PICFLAG) $(srcdir)/getpagesize.c -o pic/$@; \ 845 else true; fi 846 if [ x"$(NOASANFLAG)" != x ]; then \ 847 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getpagesize.c -o noasan/$@; \ 848 else true; fi 849 $(COMPILE.c) $(srcdir)/getpagesize.c $(OUTPUT_OPTION) 850 851./getpwd.$(objext): $(srcdir)/getpwd.c config.h $(INCDIR)/ansidecl.h \ 852 $(INCDIR)/libiberty.h 853 if [ x"$(PICFLAG)" != x ]; then \ 854 $(COMPILE.c) $(PICFLAG) $(srcdir)/getpwd.c -o pic/$@; \ 855 else true; fi 856 if [ x"$(NOASANFLAG)" != x ]; then \ 857 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getpwd.c -o noasan/$@; \ 858 else true; fi 859 $(COMPILE.c) $(srcdir)/getpwd.c $(OUTPUT_OPTION) 860 861./getruntime.$(objext): $(srcdir)/getruntime.c config.h $(INCDIR)/ansidecl.h \ 862 $(INCDIR)/libiberty.h 863 if [ x"$(PICFLAG)" != x ]; then \ 864 $(COMPILE.c) $(PICFLAG) $(srcdir)/getruntime.c -o pic/$@; \ 865 else true; fi 866 if [ x"$(NOASANFLAG)" != x ]; then \ 867 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getruntime.c -o noasan/$@; \ 868 else true; fi 869 $(COMPILE.c) $(srcdir)/getruntime.c $(OUTPUT_OPTION) 870 871./gettimeofday.$(objext): $(srcdir)/gettimeofday.c config.h $(INCDIR)/ansidecl.h \ 872 $(INCDIR)/libiberty.h 873 if [ x"$(PICFLAG)" != x ]; then \ 874 $(COMPILE.c) $(PICFLAG) $(srcdir)/gettimeofday.c -o pic/$@; \ 875 else true; fi 876 if [ x"$(NOASANFLAG)" != x ]; then \ 877 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/gettimeofday.c -o noasan/$@; \ 878 else true; fi 879 $(COMPILE.c) $(srcdir)/gettimeofday.c $(OUTPUT_OPTION) 880 881./hashtab.$(objext): $(srcdir)/hashtab.c config.h $(INCDIR)/ansidecl.h \ 882 $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h 883 if [ x"$(PICFLAG)" != x ]; then \ 884 $(COMPILE.c) $(PICFLAG) $(srcdir)/hashtab.c -o pic/$@; \ 885 else true; fi 886 if [ x"$(NOASANFLAG)" != x ]; then \ 887 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/hashtab.c -o noasan/$@; \ 888 else true; fi 889 $(COMPILE.c) $(srcdir)/hashtab.c $(OUTPUT_OPTION) 890 891./hex.$(objext): $(srcdir)/hex.c config.h $(INCDIR)/ansidecl.h \ 892 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h 893 if [ x"$(PICFLAG)" != x ]; then \ 894 $(COMPILE.c) $(PICFLAG) $(srcdir)/hex.c -o pic/$@; \ 895 else true; fi 896 if [ x"$(NOASANFLAG)" != x ]; then \ 897 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/hex.c -o noasan/$@; \ 898 else true; fi 899 $(COMPILE.c) $(srcdir)/hex.c $(OUTPUT_OPTION) 900 901./index.$(objext): $(srcdir)/index.c 902 if [ x"$(PICFLAG)" != x ]; then \ 903 $(COMPILE.c) $(PICFLAG) $(srcdir)/index.c -o pic/$@; \ 904 else true; fi 905 if [ x"$(NOASANFLAG)" != x ]; then \ 906 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/index.c -o noasan/$@; \ 907 else true; fi 908 $(COMPILE.c) $(srcdir)/index.c $(OUTPUT_OPTION) 909 910./insque.$(objext): $(srcdir)/insque.c 911 if [ x"$(PICFLAG)" != x ]; then \ 912 $(COMPILE.c) $(PICFLAG) $(srcdir)/insque.c -o pic/$@; \ 913 else true; fi 914 if [ x"$(NOASANFLAG)" != x ]; then \ 915 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/insque.c -o noasan/$@; \ 916 else true; fi 917 $(COMPILE.c) $(srcdir)/insque.c $(OUTPUT_OPTION) 918 919./lbasename.$(objext): $(srcdir)/lbasename.c config.h $(INCDIR)/ansidecl.h \ 920 $(INCDIR)/filenames.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h \ 921 $(INCDIR)/safe-ctype.h 922 if [ x"$(PICFLAG)" != x ]; then \ 923 $(COMPILE.c) $(PICFLAG) $(srcdir)/lbasename.c -o pic/$@; \ 924 else true; fi 925 if [ x"$(NOASANFLAG)" != x ]; then \ 926 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/lbasename.c -o noasan/$@; \ 927 else true; fi 928 $(COMPILE.c) $(srcdir)/lbasename.c $(OUTPUT_OPTION) 929 930./lrealpath.$(objext): $(srcdir)/lrealpath.c config.h $(INCDIR)/ansidecl.h \ 931 $(INCDIR)/libiberty.h 932 if [ x"$(PICFLAG)" != x ]; then \ 933 $(COMPILE.c) $(PICFLAG) $(srcdir)/lrealpath.c -o pic/$@; \ 934 else true; fi 935 if [ x"$(NOASANFLAG)" != x ]; then \ 936 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/lrealpath.c -o noasan/$@; \ 937 else true; fi 938 $(COMPILE.c) $(srcdir)/lrealpath.c $(OUTPUT_OPTION) 939 940./make-relative-prefix.$(objext): $(srcdir)/make-relative-prefix.c config.h \ 941 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h 942 if [ x"$(PICFLAG)" != x ]; then \ 943 $(COMPILE.c) $(PICFLAG) $(srcdir)/make-relative-prefix.c -o pic/$@; \ 944 else true; fi 945 if [ x"$(NOASANFLAG)" != x ]; then \ 946 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/make-relative-prefix.c -o noasan/$@; \ 947 else true; fi 948 $(COMPILE.c) $(srcdir)/make-relative-prefix.c $(OUTPUT_OPTION) 949 950./make-temp-file.$(objext): $(srcdir)/make-temp-file.c config.h \ 951 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h 952 if [ x"$(PICFLAG)" != x ]; then \ 953 $(COMPILE.c) $(PICFLAG) $(srcdir)/make-temp-file.c -o pic/$@; \ 954 else true; fi 955 if [ x"$(NOASANFLAG)" != x ]; then \ 956 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/make-temp-file.c -o noasan/$@; \ 957 else true; fi 958 $(COMPILE.c) $(srcdir)/make-temp-file.c $(OUTPUT_OPTION) 959 960./md5.$(objext): $(srcdir)/md5.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h 961 if [ x"$(PICFLAG)" != x ]; then \ 962 $(COMPILE.c) $(PICFLAG) $(srcdir)/md5.c -o pic/$@; \ 963 else true; fi 964 if [ x"$(NOASANFLAG)" != x ]; then \ 965 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/md5.c -o noasan/$@; \ 966 else true; fi 967 $(COMPILE.c) $(srcdir)/md5.c $(OUTPUT_OPTION) 968 969./memchr.$(objext): $(srcdir)/memchr.c $(INCDIR)/ansidecl.h 970 if [ x"$(PICFLAG)" != x ]; then \ 971 $(COMPILE.c) $(PICFLAG) $(srcdir)/memchr.c -o pic/$@; \ 972 else true; fi 973 if [ x"$(NOASANFLAG)" != x ]; then \ 974 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memchr.c -o noasan/$@; \ 975 else true; fi 976 $(COMPILE.c) $(srcdir)/memchr.c $(OUTPUT_OPTION) 977 978./memcmp.$(objext): $(srcdir)/memcmp.c $(INCDIR)/ansidecl.h 979 if [ x"$(PICFLAG)" != x ]; then \ 980 $(COMPILE.c) $(PICFLAG) $(srcdir)/memcmp.c -o pic/$@; \ 981 else true; fi 982 if [ x"$(NOASANFLAG)" != x ]; then \ 983 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memcmp.c -o noasan/$@; \ 984 else true; fi 985 $(COMPILE.c) $(srcdir)/memcmp.c $(OUTPUT_OPTION) 986 987./memcpy.$(objext): $(srcdir)/memcpy.c $(INCDIR)/ansidecl.h 988 if [ x"$(PICFLAG)" != x ]; then \ 989 $(COMPILE.c) $(PICFLAG) $(srcdir)/memcpy.c -o pic/$@; \ 990 else true; fi 991 if [ x"$(NOASANFLAG)" != x ]; then \ 992 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memcpy.c -o noasan/$@; \ 993 else true; fi 994 $(COMPILE.c) $(srcdir)/memcpy.c $(OUTPUT_OPTION) 995 996./memmem.$(objext): $(srcdir)/memmem.c config.h 997 if [ x"$(PICFLAG)" != x ]; then \ 998 $(COMPILE.c) $(PICFLAG) $(srcdir)/memmem.c -o pic/$@; \ 999 else true; fi 1000 if [ x"$(NOASANFLAG)" != x ]; then \ 1001 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memmem.c -o noasan/$@; \ 1002 else true; fi 1003 $(COMPILE.c) $(srcdir)/memmem.c $(OUTPUT_OPTION) 1004 1005./memmove.$(objext): $(srcdir)/memmove.c $(INCDIR)/ansidecl.h 1006 if [ x"$(PICFLAG)" != x ]; then \ 1007 $(COMPILE.c) $(PICFLAG) $(srcdir)/memmove.c -o pic/$@; \ 1008 else true; fi 1009 if [ x"$(NOASANFLAG)" != x ]; then \ 1010 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memmove.c -o noasan/$@; \ 1011 else true; fi 1012 $(COMPILE.c) $(srcdir)/memmove.c $(OUTPUT_OPTION) 1013 1014./mempcpy.$(objext): $(srcdir)/mempcpy.c $(INCDIR)/ansidecl.h 1015 if [ x"$(PICFLAG)" != x ]; then \ 1016 $(COMPILE.c) $(PICFLAG) $(srcdir)/mempcpy.c -o pic/$@; \ 1017 else true; fi 1018 if [ x"$(NOASANFLAG)" != x ]; then \ 1019 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/mempcpy.c -o noasan/$@; \ 1020 else true; fi 1021 $(COMPILE.c) $(srcdir)/mempcpy.c $(OUTPUT_OPTION) 1022 1023./memset.$(objext): $(srcdir)/memset.c $(INCDIR)/ansidecl.h 1024 if [ x"$(PICFLAG)" != x ]; then \ 1025 $(COMPILE.c) $(PICFLAG) $(srcdir)/memset.c -o pic/$@; \ 1026 else true; fi 1027 if [ x"$(NOASANFLAG)" != x ]; then \ 1028 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memset.c -o noasan/$@; \ 1029 else true; fi 1030 $(COMPILE.c) $(srcdir)/memset.c $(OUTPUT_OPTION) 1031 1032./mkstemps.$(objext): $(srcdir)/mkstemps.c config.h $(INCDIR)/ansidecl.h 1033 if [ x"$(PICFLAG)" != x ]; then \ 1034 $(COMPILE.c) $(PICFLAG) $(srcdir)/mkstemps.c -o pic/$@; \ 1035 else true; fi 1036 if [ x"$(NOASANFLAG)" != x ]; then \ 1037 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/mkstemps.c -o noasan/$@; \ 1038 else true; fi 1039 $(COMPILE.c) $(srcdir)/mkstemps.c $(OUTPUT_OPTION) 1040 1041./msdos.$(objext): $(srcdir)/msdos.c 1042 if [ x"$(PICFLAG)" != x ]; then \ 1043 $(COMPILE.c) $(PICFLAG) $(srcdir)/msdos.c -o pic/$@; \ 1044 else true; fi 1045 if [ x"$(NOASANFLAG)" != x ]; then \ 1046 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/msdos.c -o noasan/$@; \ 1047 else true; fi 1048 $(COMPILE.c) $(srcdir)/msdos.c $(OUTPUT_OPTION) 1049 1050./objalloc.$(objext): $(srcdir)/objalloc.c config.h $(INCDIR)/ansidecl.h \ 1051 $(INCDIR)/objalloc.h 1052 if [ x"$(PICFLAG)" != x ]; then \ 1053 $(COMPILE.c) $(PICFLAG) $(srcdir)/objalloc.c -o pic/$@; \ 1054 else true; fi 1055 if [ x"$(NOASANFLAG)" != x ]; then \ 1056 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/objalloc.c -o noasan/$@; \ 1057 else true; fi 1058 $(COMPILE.c) $(srcdir)/objalloc.c $(OUTPUT_OPTION) 1059 1060./obstack.$(objext): $(srcdir)/obstack.c config.h $(INCDIR)/obstack.h 1061 if [ x"$(PICFLAG)" != x ]; then \ 1062 $(COMPILE.c) $(PICFLAG) $(srcdir)/obstack.c -o pic/$@; \ 1063 else true; fi 1064 if [ x"$(NOASANFLAG)" != x ]; then \ 1065 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/obstack.c -o noasan/$@; \ 1066 else true; fi 1067 $(COMPILE.c) $(srcdir)/obstack.c $(OUTPUT_OPTION) 1068 1069./partition.$(objext): $(srcdir)/partition.c config.h $(INCDIR)/ansidecl.h \ 1070 $(INCDIR)/libiberty.h $(INCDIR)/partition.h 1071 if [ x"$(PICFLAG)" != x ]; then \ 1072 $(COMPILE.c) $(PICFLAG) $(srcdir)/partition.c -o pic/$@; \ 1073 else true; fi 1074 if [ x"$(NOASANFLAG)" != x ]; then \ 1075 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/partition.c -o noasan/$@; \ 1076 else true; fi 1077 $(COMPILE.c) $(srcdir)/partition.c $(OUTPUT_OPTION) 1078 1079./pex-common.$(objext): $(srcdir)/pex-common.c config.h $(INCDIR)/ansidecl.h \ 1080 $(INCDIR)/libiberty.h $(srcdir)/pex-common.h 1081 if [ x"$(PICFLAG)" != x ]; then \ 1082 $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-common.c -o pic/$@; \ 1083 else true; fi 1084 if [ x"$(NOASANFLAG)" != x ]; then \ 1085 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-common.c -o noasan/$@; \ 1086 else true; fi 1087 $(COMPILE.c) $(srcdir)/pex-common.c $(OUTPUT_OPTION) 1088 1089./pex-djgpp.$(objext): $(srcdir)/pex-djgpp.c config.h $(INCDIR)/ansidecl.h \ 1090 $(INCDIR)/libiberty.h $(srcdir)/pex-common.h 1091 if [ x"$(PICFLAG)" != x ]; then \ 1092 $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-djgpp.c -o pic/$@; \ 1093 else true; fi 1094 if [ x"$(NOASANFLAG)" != x ]; then \ 1095 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-djgpp.c -o noasan/$@; \ 1096 else true; fi 1097 $(COMPILE.c) $(srcdir)/pex-djgpp.c $(OUTPUT_OPTION) 1098 1099./pex-msdos.$(objext): $(srcdir)/pex-msdos.c config.h $(INCDIR)/ansidecl.h \ 1100 $(INCDIR)/libiberty.h $(srcdir)/pex-common.h \ 1101 $(INCDIR)/safe-ctype.h 1102 if [ x"$(PICFLAG)" != x ]; then \ 1103 $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-msdos.c -o pic/$@; \ 1104 else true; fi 1105 if [ x"$(NOASANFLAG)" != x ]; then \ 1106 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-msdos.c -o noasan/$@; \ 1107 else true; fi 1108 $(COMPILE.c) $(srcdir)/pex-msdos.c $(OUTPUT_OPTION) 1109 1110./pex-one.$(objext): $(srcdir)/pex-one.c config.h $(INCDIR)/ansidecl.h \ 1111 $(INCDIR)/libiberty.h 1112 if [ x"$(PICFLAG)" != x ]; then \ 1113 $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-one.c -o pic/$@; \ 1114 else true; fi 1115 if [ x"$(NOASANFLAG)" != x ]; then \ 1116 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-one.c -o noasan/$@; \ 1117 else true; fi 1118 $(COMPILE.c) $(srcdir)/pex-one.c $(OUTPUT_OPTION) 1119 1120./pex-unix.$(objext): $(srcdir)/pex-unix.c config.h $(INCDIR)/ansidecl.h \ 1121 $(INCDIR)/libiberty.h $(srcdir)/pex-common.h 1122 if [ x"$(PICFLAG)" != x ]; then \ 1123 $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-unix.c -o pic/$@; \ 1124 else true; fi 1125 if [ x"$(NOASANFLAG)" != x ]; then \ 1126 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-unix.c -o noasan/$@; \ 1127 else true; fi 1128 $(COMPILE.c) $(srcdir)/pex-unix.c $(OUTPUT_OPTION) 1129 1130./pex-win32.$(objext): $(srcdir)/pex-win32.c config.h $(INCDIR)/ansidecl.h \ 1131 $(INCDIR)/libiberty.h $(srcdir)/pex-common.h 1132 if [ x"$(PICFLAG)" != x ]; then \ 1133 $(COMPILE.c) $(PICFLAG) $(srcdir)/pex-win32.c -o pic/$@; \ 1134 else true; fi 1135 if [ x"$(NOASANFLAG)" != x ]; then \ 1136 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-win32.c -o noasan/$@; \ 1137 else true; fi 1138 $(COMPILE.c) $(srcdir)/pex-win32.c $(OUTPUT_OPTION) 1139 1140./pexecute.$(objext): $(srcdir)/pexecute.c config.h $(INCDIR)/ansidecl.h \ 1141 $(INCDIR)/libiberty.h 1142 if [ x"$(PICFLAG)" != x ]; then \ 1143 $(COMPILE.c) $(PICFLAG) $(srcdir)/pexecute.c -o pic/$@; \ 1144 else true; fi 1145 if [ x"$(NOASANFLAG)" != x ]; then \ 1146 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pexecute.c -o noasan/$@; \ 1147 else true; fi 1148 $(COMPILE.c) $(srcdir)/pexecute.c $(OUTPUT_OPTION) 1149 1150./physmem.$(objext): $(srcdir)/physmem.c config.h $(INCDIR)/ansidecl.h \ 1151 $(INCDIR)/libiberty.h 1152 if [ x"$(PICFLAG)" != x ]; then \ 1153 $(COMPILE.c) $(PICFLAG) $(srcdir)/physmem.c -o pic/$@; \ 1154 else true; fi 1155 if [ x"$(NOASANFLAG)" != x ]; then \ 1156 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/physmem.c -o noasan/$@; \ 1157 else true; fi 1158 $(COMPILE.c) $(srcdir)/physmem.c $(OUTPUT_OPTION) 1159 1160./putenv.$(objext): $(srcdir)/putenv.c config.h $(INCDIR)/ansidecl.h 1161 if [ x"$(PICFLAG)" != x ]; then \ 1162 $(COMPILE.c) $(PICFLAG) $(srcdir)/putenv.c -o pic/$@; \ 1163 else true; fi 1164 if [ x"$(NOASANFLAG)" != x ]; then \ 1165 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/putenv.c -o noasan/$@; \ 1166 else true; fi 1167 $(COMPILE.c) $(srcdir)/putenv.c $(OUTPUT_OPTION) 1168 1169./random.$(objext): $(srcdir)/random.c $(INCDIR)/ansidecl.h 1170 if [ x"$(PICFLAG)" != x ]; then \ 1171 $(COMPILE.c) $(PICFLAG) $(srcdir)/random.c -o pic/$@; \ 1172 else true; fi 1173 if [ x"$(NOASANFLAG)" != x ]; then \ 1174 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/random.c -o noasan/$@; \ 1175 else true; fi 1176 $(COMPILE.c) $(srcdir)/random.c $(OUTPUT_OPTION) 1177 1178./regex.$(objext): $(srcdir)/regex.c config.h $(INCDIR)/ansidecl.h \ 1179 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h 1180 if [ x"$(PICFLAG)" != x ]; then \ 1181 $(COMPILE.c) $(PICFLAG) $(srcdir)/regex.c -o pic/$@; \ 1182 else true; fi 1183 if [ x"$(NOASANFLAG)" != x ]; then \ 1184 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/regex.c -o noasan/$@; \ 1185 else true; fi 1186 $(COMPILE.c) $(srcdir)/regex.c $(OUTPUT_OPTION) 1187 1188./rename.$(objext): $(srcdir)/rename.c config.h $(INCDIR)/ansidecl.h 1189 if [ x"$(PICFLAG)" != x ]; then \ 1190 $(COMPILE.c) $(PICFLAG) $(srcdir)/rename.c -o pic/$@; \ 1191 else true; fi 1192 if [ x"$(NOASANFLAG)" != x ]; then \ 1193 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/rename.c -o noasan/$@; \ 1194 else true; fi 1195 $(COMPILE.c) $(srcdir)/rename.c $(OUTPUT_OPTION) 1196 1197./rindex.$(objext): $(srcdir)/rindex.c 1198 if [ x"$(PICFLAG)" != x ]; then \ 1199 $(COMPILE.c) $(PICFLAG) $(srcdir)/rindex.c -o pic/$@; \ 1200 else true; fi 1201 if [ x"$(NOASANFLAG)" != x ]; then \ 1202 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/rindex.c -o noasan/$@; \ 1203 else true; fi 1204 $(COMPILE.c) $(srcdir)/rindex.c $(OUTPUT_OPTION) 1205 1206./rust-demangle.$(objext): $(srcdir)/rust-demangle.c config.h \ 1207 $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \ 1208 $(INCDIR)/safe-ctype.h 1209 if [ x"$(PICFLAG)" != x ]; then \ 1210 $(COMPILE.c) $(PICFLAG) $(srcdir)/rust-demangle.c -o pic/$@; \ 1211 else true; fi 1212 if [ x"$(NOASANFLAG)" != x ]; then \ 1213 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/rust-demangle.c -o noasan/$@; \ 1214 else true; fi 1215 $(COMPILE.c) $(srcdir)/rust-demangle.c $(OUTPUT_OPTION) 1216 1217./safe-ctype.$(objext): $(srcdir)/safe-ctype.c $(INCDIR)/ansidecl.h \ 1218 $(INCDIR)/safe-ctype.h 1219 if [ x"$(PICFLAG)" != x ]; then \ 1220 $(COMPILE.c) $(PICFLAG) $(srcdir)/safe-ctype.c -o pic/$@; \ 1221 else true; fi 1222 if [ x"$(NOASANFLAG)" != x ]; then \ 1223 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/safe-ctype.c -o noasan/$@; \ 1224 else true; fi 1225 $(COMPILE.c) $(srcdir)/safe-ctype.c $(OUTPUT_OPTION) 1226 1227./setenv.$(objext): $(srcdir)/setenv.c config.h $(INCDIR)/ansidecl.h 1228 if [ x"$(PICFLAG)" != x ]; then \ 1229 $(COMPILE.c) $(PICFLAG) $(srcdir)/setenv.c -o pic/$@; \ 1230 else true; fi 1231 if [ x"$(NOASANFLAG)" != x ]; then \ 1232 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/setenv.c -o noasan/$@; \ 1233 else true; fi 1234 $(COMPILE.c) $(srcdir)/setenv.c $(OUTPUT_OPTION) 1235 1236./setproctitle.$(objext): $(srcdir)/setproctitle.c config.h $(INCDIR)/ansidecl.h 1237 if [ x"$(PICFLAG)" != x ]; then \ 1238 $(COMPILE.c) $(PICFLAG) $(srcdir)/setproctitle.c -o pic/$@; \ 1239 else true; fi 1240 if [ x"$(NOASANFLAG)" != x ]; then \ 1241 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/setproctitle.c -o noasan/$@; \ 1242 else true; fi 1243 $(COMPILE.c) $(srcdir)/setproctitle.c $(OUTPUT_OPTION) 1244 1245./sha1.$(objext): $(srcdir)/sha1.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/sha1.h 1246 if [ x"$(PICFLAG)" != x ]; then \ 1247 $(COMPILE.c) $(PICFLAG) $(srcdir)/sha1.c -o pic/$@; \ 1248 else true; fi 1249 if [ x"$(NOASANFLAG)" != x ]; then \ 1250 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/sha1.c -o noasan/$@; \ 1251 else true; fi 1252 $(COMPILE.c) $(srcdir)/sha1.c $(OUTPUT_OPTION) 1253 1254./sigsetmask.$(objext): $(srcdir)/sigsetmask.c $(INCDIR)/ansidecl.h 1255 if [ x"$(PICFLAG)" != x ]; then \ 1256 $(COMPILE.c) $(PICFLAG) $(srcdir)/sigsetmask.c -o pic/$@; \ 1257 else true; fi 1258 if [ x"$(NOASANFLAG)" != x ]; then \ 1259 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/sigsetmask.c -o noasan/$@; \ 1260 else true; fi 1261 $(COMPILE.c) $(srcdir)/sigsetmask.c $(OUTPUT_OPTION) 1262 1263./simple-object-coff.$(objext): $(srcdir)/simple-object-coff.c config.h \ 1264 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ 1265 $(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h 1266 if [ x"$(PICFLAG)" != x ]; then \ 1267 $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-coff.c -o pic/$@; \ 1268 else true; fi 1269 if [ x"$(NOASANFLAG)" != x ]; then \ 1270 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-coff.c -o noasan/$@; \ 1271 else true; fi 1272 $(COMPILE.c) $(srcdir)/simple-object-coff.c $(OUTPUT_OPTION) 1273 1274./simple-object-elf.$(objext): $(srcdir)/simple-object-elf.c config.h \ 1275 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ 1276 $(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h 1277 if [ x"$(PICFLAG)" != x ]; then \ 1278 $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-elf.c -o pic/$@; \ 1279 else true; fi 1280 if [ x"$(NOASANFLAG)" != x ]; then \ 1281 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-elf.c -o noasan/$@; \ 1282 else true; fi 1283 $(COMPILE.c) $(srcdir)/simple-object-elf.c $(OUTPUT_OPTION) 1284 1285./simple-object-mach-o.$(objext): $(srcdir)/simple-object-mach-o.c config.h \ 1286 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ 1287 $(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h 1288 if [ x"$(PICFLAG)" != x ]; then \ 1289 $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-mach-o.c -o pic/$@; \ 1290 else true; fi 1291 if [ x"$(NOASANFLAG)" != x ]; then \ 1292 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-mach-o.c -o noasan/$@; \ 1293 else true; fi 1294 $(COMPILE.c) $(srcdir)/simple-object-mach-o.c $(OUTPUT_OPTION) 1295 1296./simple-object-xcoff.$(objext): $(srcdir)/simple-object-xcoff.c config.h \ 1297 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ 1298 $(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h 1299 if [ x"$(PICFLAG)" != x ]; then \ 1300 $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-xcoff.c -o pic/$@; \ 1301 else true; fi 1302 if [ x"$(NOASANFLAG)" != x ]; then \ 1303 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-xcoff.c -o noasan/$@; \ 1304 else true; fi 1305 $(COMPILE.c) $(srcdir)/simple-object-xcoff.c $(OUTPUT_OPTION) 1306 1307./simple-object.$(objext): $(srcdir)/simple-object.c config.h \ 1308 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ 1309 $(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h 1310 if [ x"$(PICFLAG)" != x ]; then \ 1311 $(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object.c -o pic/$@; \ 1312 else true; fi 1313 if [ x"$(NOASANFLAG)" != x ]; then \ 1314 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object.c -o noasan/$@; \ 1315 else true; fi 1316 $(COMPILE.c) $(srcdir)/simple-object.c $(OUTPUT_OPTION) 1317 1318./snprintf.$(objext): $(srcdir)/snprintf.c $(INCDIR)/ansidecl.h 1319 if [ x"$(PICFLAG)" != x ]; then \ 1320 $(COMPILE.c) $(PICFLAG) $(srcdir)/snprintf.c -o pic/$@; \ 1321 else true; fi 1322 if [ x"$(NOASANFLAG)" != x ]; then \ 1323 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/snprintf.c -o noasan/$@; \ 1324 else true; fi 1325 $(COMPILE.c) $(srcdir)/snprintf.c $(OUTPUT_OPTION) 1326 1327./sort.$(objext): $(srcdir)/sort.c config.h $(INCDIR)/ansidecl.h \ 1328 $(INCDIR)/libiberty.h $(INCDIR)/sort.h 1329 if [ x"$(PICFLAG)" != x ]; then \ 1330 $(COMPILE.c) $(PICFLAG) $(srcdir)/sort.c -o pic/$@; \ 1331 else true; fi 1332 if [ x"$(NOASANFLAG)" != x ]; then \ 1333 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/sort.c -o noasan/$@; \ 1334 else true; fi 1335 $(COMPILE.c) $(srcdir)/sort.c $(OUTPUT_OPTION) 1336 1337./spaces.$(objext): $(srcdir)/spaces.c config.h $(INCDIR)/ansidecl.h \ 1338 $(INCDIR)/libiberty.h 1339 if [ x"$(PICFLAG)" != x ]; then \ 1340 $(COMPILE.c) $(PICFLAG) $(srcdir)/spaces.c -o pic/$@; \ 1341 else true; fi 1342 if [ x"$(NOASANFLAG)" != x ]; then \ 1343 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/spaces.c -o noasan/$@; \ 1344 else true; fi 1345 $(COMPILE.c) $(srcdir)/spaces.c $(OUTPUT_OPTION) 1346 1347./splay-tree.$(objext): $(srcdir)/splay-tree.c config.h $(INCDIR)/ansidecl.h \ 1348 $(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h 1349 if [ x"$(PICFLAG)" != x ]; then \ 1350 $(COMPILE.c) $(PICFLAG) $(srcdir)/splay-tree.c -o pic/$@; \ 1351 else true; fi 1352 if [ x"$(NOASANFLAG)" != x ]; then \ 1353 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/splay-tree.c -o noasan/$@; \ 1354 else true; fi 1355 $(COMPILE.c) $(srcdir)/splay-tree.c $(OUTPUT_OPTION) 1356 1357./stack-limit.$(objext): $(srcdir)/stack-limit.c config.h $(INCDIR)/ansidecl.h 1358 if [ x"$(PICFLAG)" != x ]; then \ 1359 $(COMPILE.c) $(PICFLAG) $(srcdir)/stack-limit.c -o pic/$@; \ 1360 else true; fi 1361 if [ x"$(NOASANFLAG)" != x ]; then \ 1362 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/stack-limit.c -o noasan/$@; \ 1363 else true; fi 1364 $(COMPILE.c) $(srcdir)/stack-limit.c $(OUTPUT_OPTION) 1365 1366./stpcpy.$(objext): $(srcdir)/stpcpy.c $(INCDIR)/ansidecl.h 1367 if [ x"$(PICFLAG)" != x ]; then \ 1368 $(COMPILE.c) $(PICFLAG) $(srcdir)/stpcpy.c -o pic/$@; \ 1369 else true; fi 1370 if [ x"$(NOASANFLAG)" != x ]; then \ 1371 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/stpcpy.c -o noasan/$@; \ 1372 else true; fi 1373 $(COMPILE.c) $(srcdir)/stpcpy.c $(OUTPUT_OPTION) 1374 1375./stpncpy.$(objext): $(srcdir)/stpncpy.c $(INCDIR)/ansidecl.h 1376 if [ x"$(PICFLAG)" != x ]; then \ 1377 $(COMPILE.c) $(PICFLAG) $(srcdir)/stpncpy.c -o pic/$@; \ 1378 else true; fi 1379 if [ x"$(NOASANFLAG)" != x ]; then \ 1380 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/stpncpy.c -o noasan/$@; \ 1381 else true; fi 1382 $(COMPILE.c) $(srcdir)/stpncpy.c $(OUTPUT_OPTION) 1383 1384./strcasecmp.$(objext): $(srcdir)/strcasecmp.c $(INCDIR)/ansidecl.h 1385 if [ x"$(PICFLAG)" != x ]; then \ 1386 $(COMPILE.c) $(PICFLAG) $(srcdir)/strcasecmp.c -o pic/$@; \ 1387 else true; fi 1388 if [ x"$(NOASANFLAG)" != x ]; then \ 1389 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strcasecmp.c -o noasan/$@; \ 1390 else true; fi 1391 $(COMPILE.c) $(srcdir)/strcasecmp.c $(OUTPUT_OPTION) 1392 1393./strchr.$(objext): $(srcdir)/strchr.c $(INCDIR)/ansidecl.h 1394 if [ x"$(PICFLAG)" != x ]; then \ 1395 $(COMPILE.c) $(PICFLAG) $(srcdir)/strchr.c -o pic/$@; \ 1396 else true; fi 1397 if [ x"$(NOASANFLAG)" != x ]; then \ 1398 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strchr.c -o noasan/$@; \ 1399 else true; fi 1400 $(COMPILE.c) $(srcdir)/strchr.c $(OUTPUT_OPTION) 1401 1402./strdup.$(objext): $(srcdir)/strdup.c $(INCDIR)/ansidecl.h 1403 if [ x"$(PICFLAG)" != x ]; then \ 1404 $(COMPILE.c) $(PICFLAG) $(srcdir)/strdup.c -o pic/$@; \ 1405 else true; fi 1406 if [ x"$(NOASANFLAG)" != x ]; then \ 1407 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strdup.c -o noasan/$@; \ 1408 else true; fi 1409 $(COMPILE.c) $(srcdir)/strdup.c $(OUTPUT_OPTION) 1410 1411./strerror.$(objext): $(srcdir)/strerror.c config.h $(INCDIR)/ansidecl.h \ 1412 $(INCDIR)/libiberty.h 1413 if [ x"$(PICFLAG)" != x ]; then \ 1414 $(COMPILE.c) $(PICFLAG) $(srcdir)/strerror.c -o pic/$@; \ 1415 else true; fi 1416 if [ x"$(NOASANFLAG)" != x ]; then \ 1417 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strerror.c -o noasan/$@; \ 1418 else true; fi 1419 $(COMPILE.c) $(srcdir)/strerror.c $(OUTPUT_OPTION) 1420 1421./strncasecmp.$(objext): $(srcdir)/strncasecmp.c $(INCDIR)/ansidecl.h 1422 if [ x"$(PICFLAG)" != x ]; then \ 1423 $(COMPILE.c) $(PICFLAG) $(srcdir)/strncasecmp.c -o pic/$@; \ 1424 else true; fi 1425 if [ x"$(NOASANFLAG)" != x ]; then \ 1426 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strncasecmp.c -o noasan/$@; \ 1427 else true; fi 1428 $(COMPILE.c) $(srcdir)/strncasecmp.c $(OUTPUT_OPTION) 1429 1430./strncmp.$(objext): $(srcdir)/strncmp.c $(INCDIR)/ansidecl.h 1431 if [ x"$(PICFLAG)" != x ]; then \ 1432 $(COMPILE.c) $(PICFLAG) $(srcdir)/strncmp.c -o pic/$@; \ 1433 else true; fi 1434 if [ x"$(NOASANFLAG)" != x ]; then \ 1435 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strncmp.c -o noasan/$@; \ 1436 else true; fi 1437 $(COMPILE.c) $(srcdir)/strncmp.c $(OUTPUT_OPTION) 1438 1439./strndup.$(objext): $(srcdir)/strndup.c $(INCDIR)/ansidecl.h 1440 if [ x"$(PICFLAG)" != x ]; then \ 1441 $(COMPILE.c) $(PICFLAG) $(srcdir)/strndup.c -o pic/$@; \ 1442 else true; fi 1443 if [ x"$(NOASANFLAG)" != x ]; then \ 1444 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strndup.c -o noasan/$@; \ 1445 else true; fi 1446 $(COMPILE.c) $(srcdir)/strndup.c $(OUTPUT_OPTION) 1447 1448./strnlen.$(objext): $(srcdir)/strnlen.c config.h 1449 if [ x"$(PICFLAG)" != x ]; then \ 1450 $(COMPILE.c) $(PICFLAG) $(srcdir)/strnlen.c -o pic/$@; \ 1451 else true; fi 1452 if [ x"$(NOASANFLAG)" != x ]; then \ 1453 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strnlen.c -o noasan/$@; \ 1454 else true; fi 1455 $(COMPILE.c) $(srcdir)/strnlen.c $(OUTPUT_OPTION) 1456 1457./strrchr.$(objext): $(srcdir)/strrchr.c $(INCDIR)/ansidecl.h 1458 if [ x"$(PICFLAG)" != x ]; then \ 1459 $(COMPILE.c) $(PICFLAG) $(srcdir)/strrchr.c -o pic/$@; \ 1460 else true; fi 1461 if [ x"$(NOASANFLAG)" != x ]; then \ 1462 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strrchr.c -o noasan/$@; \ 1463 else true; fi 1464 $(COMPILE.c) $(srcdir)/strrchr.c $(OUTPUT_OPTION) 1465 1466./strsignal.$(objext): $(srcdir)/strsignal.c config.h $(INCDIR)/ansidecl.h \ 1467 $(INCDIR)/libiberty.h 1468 if [ x"$(PICFLAG)" != x ]; then \ 1469 $(COMPILE.c) $(PICFLAG) $(srcdir)/strsignal.c -o pic/$@; \ 1470 else true; fi 1471 if [ x"$(NOASANFLAG)" != x ]; then \ 1472 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strsignal.c -o noasan/$@; \ 1473 else true; fi 1474 $(COMPILE.c) $(srcdir)/strsignal.c $(OUTPUT_OPTION) 1475 1476./strstr.$(objext): $(srcdir)/strstr.c 1477 if [ x"$(PICFLAG)" != x ]; then \ 1478 $(COMPILE.c) $(PICFLAG) $(srcdir)/strstr.c -o pic/$@; \ 1479 else true; fi 1480 if [ x"$(NOASANFLAG)" != x ]; then \ 1481 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strstr.c -o noasan/$@; \ 1482 else true; fi 1483 $(COMPILE.c) $(srcdir)/strstr.c $(OUTPUT_OPTION) 1484 1485./strtod.$(objext): $(srcdir)/strtod.c $(INCDIR)/ansidecl.h \ 1486 $(INCDIR)/safe-ctype.h 1487 if [ x"$(PICFLAG)" != x ]; then \ 1488 $(COMPILE.c) $(PICFLAG) $(srcdir)/strtod.c -o pic/$@; \ 1489 else true; fi 1490 if [ x"$(NOASANFLAG)" != x ]; then \ 1491 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtod.c -o noasan/$@; \ 1492 else true; fi 1493 $(COMPILE.c) $(srcdir)/strtod.c $(OUTPUT_OPTION) 1494 1495./strtol.$(objext): $(srcdir)/strtol.c config.h $(INCDIR)/safe-ctype.h 1496 if [ x"$(PICFLAG)" != x ]; then \ 1497 $(COMPILE.c) $(PICFLAG) $(srcdir)/strtol.c -o pic/$@; \ 1498 else true; fi 1499 if [ x"$(NOASANFLAG)" != x ]; then \ 1500 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtol.c -o noasan/$@; \ 1501 else true; fi 1502 $(COMPILE.c) $(srcdir)/strtol.c $(OUTPUT_OPTION) 1503 1504./strtoll.$(objext): $(srcdir)/strtoll.c config.h $(INCDIR)/safe-ctype.h 1505 if [ x"$(PICFLAG)" != x ]; then \ 1506 $(COMPILE.c) $(PICFLAG) $(srcdir)/strtoll.c -o pic/$@; \ 1507 else true; fi 1508 if [ x"$(NOASANFLAG)" != x ]; then \ 1509 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtoll.c -o noasan/$@; \ 1510 else true; fi 1511 $(COMPILE.c) $(srcdir)/strtoll.c $(OUTPUT_OPTION) 1512 1513./strtoul.$(objext): $(srcdir)/strtoul.c config.h $(INCDIR)/ansidecl.h \ 1514 $(INCDIR)/safe-ctype.h 1515 if [ x"$(PICFLAG)" != x ]; then \ 1516 $(COMPILE.c) $(PICFLAG) $(srcdir)/strtoul.c -o pic/$@; \ 1517 else true; fi 1518 if [ x"$(NOASANFLAG)" != x ]; then \ 1519 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtoul.c -o noasan/$@; \ 1520 else true; fi 1521 $(COMPILE.c) $(srcdir)/strtoul.c $(OUTPUT_OPTION) 1522 1523./strtoull.$(objext): $(srcdir)/strtoull.c config.h $(INCDIR)/ansidecl.h \ 1524 $(INCDIR)/safe-ctype.h 1525 if [ x"$(PICFLAG)" != x ]; then \ 1526 $(COMPILE.c) $(PICFLAG) $(srcdir)/strtoull.c -o pic/$@; \ 1527 else true; fi 1528 if [ x"$(NOASANFLAG)" != x ]; then \ 1529 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtoull.c -o noasan/$@; \ 1530 else true; fi 1531 $(COMPILE.c) $(srcdir)/strtoull.c $(OUTPUT_OPTION) 1532 1533./strverscmp.$(objext): $(srcdir)/strverscmp.c $(INCDIR)/ansidecl.h \ 1534 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h 1535 if [ x"$(PICFLAG)" != x ]; then \ 1536 $(COMPILE.c) $(PICFLAG) $(srcdir)/strverscmp.c -o pic/$@; \ 1537 else true; fi 1538 if [ x"$(NOASANFLAG)" != x ]; then \ 1539 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strverscmp.c -o noasan/$@; \ 1540 else true; fi 1541 $(COMPILE.c) $(srcdir)/strverscmp.c $(OUTPUT_OPTION) 1542 1543./timeval-utils.$(objext): $(srcdir)/timeval-utils.c config.h \ 1544 $(INCDIR)/timeval-utils.h 1545 if [ x"$(PICFLAG)" != x ]; then \ 1546 $(COMPILE.c) $(PICFLAG) $(srcdir)/timeval-utils.c -o pic/$@; \ 1547 else true; fi 1548 if [ x"$(NOASANFLAG)" != x ]; then \ 1549 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/timeval-utils.c -o noasan/$@; \ 1550 else true; fi 1551 $(COMPILE.c) $(srcdir)/timeval-utils.c $(OUTPUT_OPTION) 1552 1553./tmpnam.$(objext): $(srcdir)/tmpnam.c 1554 if [ x"$(PICFLAG)" != x ]; then \ 1555 $(COMPILE.c) $(PICFLAG) $(srcdir)/tmpnam.c -o pic/$@; \ 1556 else true; fi 1557 if [ x"$(NOASANFLAG)" != x ]; then \ 1558 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/tmpnam.c -o noasan/$@; \ 1559 else true; fi 1560 $(COMPILE.c) $(srcdir)/tmpnam.c $(OUTPUT_OPTION) 1561 1562./unlink-if-ordinary.$(objext): $(srcdir)/unlink-if-ordinary.c config.h \ 1563 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h 1564 if [ x"$(PICFLAG)" != x ]; then \ 1565 $(COMPILE.c) $(PICFLAG) $(srcdir)/unlink-if-ordinary.c -o pic/$@; \ 1566 else true; fi 1567 if [ x"$(NOASANFLAG)" != x ]; then \ 1568 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/unlink-if-ordinary.c -o noasan/$@; \ 1569 else true; fi 1570 $(COMPILE.c) $(srcdir)/unlink-if-ordinary.c $(OUTPUT_OPTION) 1571 1572./vasprintf.$(objext): $(srcdir)/vasprintf.c config.h $(INCDIR)/ansidecl.h \ 1573 $(INCDIR)/libiberty.h $(srcdir)/vprintf-support.h 1574 if [ x"$(PICFLAG)" != x ]; then \ 1575 $(COMPILE.c) $(PICFLAG) $(srcdir)/vasprintf.c -o pic/$@; \ 1576 else true; fi 1577 if [ x"$(NOASANFLAG)" != x ]; then \ 1578 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vasprintf.c -o noasan/$@; \ 1579 else true; fi 1580 $(COMPILE.c) $(srcdir)/vasprintf.c $(OUTPUT_OPTION) 1581 1582./vfork.$(objext): $(srcdir)/vfork.c $(INCDIR)/ansidecl.h 1583 if [ x"$(PICFLAG)" != x ]; then \ 1584 $(COMPILE.c) $(PICFLAG) $(srcdir)/vfork.c -o pic/$@; \ 1585 else true; fi 1586 if [ x"$(NOASANFLAG)" != x ]; then \ 1587 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vfork.c -o noasan/$@; \ 1588 else true; fi 1589 $(COMPILE.c) $(srcdir)/vfork.c $(OUTPUT_OPTION) 1590 1591./vfprintf.$(objext): $(srcdir)/vfprintf.c $(INCDIR)/ansidecl.h 1592 if [ x"$(PICFLAG)" != x ]; then \ 1593 $(COMPILE.c) $(PICFLAG) $(srcdir)/vfprintf.c -o pic/$@; \ 1594 else true; fi 1595 if [ x"$(NOASANFLAG)" != x ]; then \ 1596 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vfprintf.c -o noasan/$@; \ 1597 else true; fi 1598 $(COMPILE.c) $(srcdir)/vfprintf.c $(OUTPUT_OPTION) 1599 1600./vprintf-support.$(objext): $(srcdir)/vprintf-support.c config.h \ 1601 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h 1602 if [ x"$(PICFLAG)" != x ]; then \ 1603 $(COMPILE.c) $(PICFLAG) $(srcdir)/vprintf-support.c -o pic/$@; \ 1604 else true; fi 1605 if [ x"$(NOASANFLAG)" != x ]; then \ 1606 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vprintf-support.c -o noasan/$@; \ 1607 else true; fi 1608 $(COMPILE.c) $(srcdir)/vprintf-support.c $(OUTPUT_OPTION) 1609 1610./vprintf.$(objext): $(srcdir)/vprintf.c $(INCDIR)/ansidecl.h 1611 if [ x"$(PICFLAG)" != x ]; then \ 1612 $(COMPILE.c) $(PICFLAG) $(srcdir)/vprintf.c -o pic/$@; \ 1613 else true; fi 1614 if [ x"$(NOASANFLAG)" != x ]; then \ 1615 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vprintf.c -o noasan/$@; \ 1616 else true; fi 1617 $(COMPILE.c) $(srcdir)/vprintf.c $(OUTPUT_OPTION) 1618 1619./vsnprintf.$(objext): $(srcdir)/vsnprintf.c config.h $(INCDIR)/ansidecl.h \ 1620 $(INCDIR)/libiberty.h 1621 if [ x"$(PICFLAG)" != x ]; then \ 1622 $(COMPILE.c) $(PICFLAG) $(srcdir)/vsnprintf.c -o pic/$@; \ 1623 else true; fi 1624 if [ x"$(NOASANFLAG)" != x ]; then \ 1625 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vsnprintf.c -o noasan/$@; \ 1626 else true; fi 1627 $(COMPILE.c) $(srcdir)/vsnprintf.c $(OUTPUT_OPTION) 1628 1629./vsprintf.$(objext): $(srcdir)/vsprintf.c $(INCDIR)/ansidecl.h 1630 if [ x"$(PICFLAG)" != x ]; then \ 1631 $(COMPILE.c) $(PICFLAG) $(srcdir)/vsprintf.c -o pic/$@; \ 1632 else true; fi 1633 if [ x"$(NOASANFLAG)" != x ]; then \ 1634 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vsprintf.c -o noasan/$@; \ 1635 else true; fi 1636 $(COMPILE.c) $(srcdir)/vsprintf.c $(OUTPUT_OPTION) 1637 1638./waitpid.$(objext): $(srcdir)/waitpid.c config.h $(INCDIR)/ansidecl.h 1639 if [ x"$(PICFLAG)" != x ]; then \ 1640 $(COMPILE.c) $(PICFLAG) $(srcdir)/waitpid.c -o pic/$@; \ 1641 else true; fi 1642 if [ x"$(NOASANFLAG)" != x ]; then \ 1643 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/waitpid.c -o noasan/$@; \ 1644 else true; fi 1645 $(COMPILE.c) $(srcdir)/waitpid.c $(OUTPUT_OPTION) 1646 1647./xasprintf.$(objext): $(srcdir)/xasprintf.c config.h $(INCDIR)/ansidecl.h \ 1648 $(INCDIR)/libiberty.h 1649 if [ x"$(PICFLAG)" != x ]; then \ 1650 $(COMPILE.c) $(PICFLAG) $(srcdir)/xasprintf.c -o pic/$@; \ 1651 else true; fi 1652 if [ x"$(NOASANFLAG)" != x ]; then \ 1653 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xasprintf.c -o noasan/$@; \ 1654 else true; fi 1655 $(COMPILE.c) $(srcdir)/xasprintf.c $(OUTPUT_OPTION) 1656 1657./xatexit.$(objext): $(srcdir)/xatexit.c config.h $(INCDIR)/ansidecl.h \ 1658 $(INCDIR)/libiberty.h 1659 if [ x"$(PICFLAG)" != x ]; then \ 1660 $(COMPILE.c) $(PICFLAG) $(srcdir)/xatexit.c -o pic/$@; \ 1661 else true; fi 1662 if [ x"$(NOASANFLAG)" != x ]; then \ 1663 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xatexit.c -o noasan/$@; \ 1664 else true; fi 1665 $(COMPILE.c) $(srcdir)/xatexit.c $(OUTPUT_OPTION) 1666 1667./xexit.$(objext): $(srcdir)/xexit.c config.h $(INCDIR)/ansidecl.h \ 1668 $(INCDIR)/libiberty.h 1669 if [ x"$(PICFLAG)" != x ]; then \ 1670 $(COMPILE.c) $(PICFLAG) $(srcdir)/xexit.c -o pic/$@; \ 1671 else true; fi 1672 if [ x"$(NOASANFLAG)" != x ]; then \ 1673 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xexit.c -o noasan/$@; \ 1674 else true; fi 1675 $(COMPILE.c) $(srcdir)/xexit.c $(OUTPUT_OPTION) 1676 1677./xmalloc.$(objext): $(srcdir)/xmalloc.c config.h $(INCDIR)/ansidecl.h \ 1678 $(INCDIR)/libiberty.h 1679 if [ x"$(PICFLAG)" != x ]; then \ 1680 $(COMPILE.c) $(PICFLAG) $(srcdir)/xmalloc.c -o pic/$@; \ 1681 else true; fi 1682 if [ x"$(NOASANFLAG)" != x ]; then \ 1683 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xmalloc.c -o noasan/$@; \ 1684 else true; fi 1685 $(COMPILE.c) $(srcdir)/xmalloc.c $(OUTPUT_OPTION) 1686 1687./xmemdup.$(objext): $(srcdir)/xmemdup.c config.h $(INCDIR)/ansidecl.h \ 1688 $(INCDIR)/libiberty.h 1689 if [ x"$(PICFLAG)" != x ]; then \ 1690 $(COMPILE.c) $(PICFLAG) $(srcdir)/xmemdup.c -o pic/$@; \ 1691 else true; fi 1692 if [ x"$(NOASANFLAG)" != x ]; then \ 1693 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xmemdup.c -o noasan/$@; \ 1694 else true; fi 1695 $(COMPILE.c) $(srcdir)/xmemdup.c $(OUTPUT_OPTION) 1696 1697./xstrdup.$(objext): $(srcdir)/xstrdup.c config.h $(INCDIR)/ansidecl.h \ 1698 $(INCDIR)/libiberty.h 1699 if [ x"$(PICFLAG)" != x ]; then \ 1700 $(COMPILE.c) $(PICFLAG) $(srcdir)/xstrdup.c -o pic/$@; \ 1701 else true; fi 1702 if [ x"$(NOASANFLAG)" != x ]; then \ 1703 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xstrdup.c -o noasan/$@; \ 1704 else true; fi 1705 $(COMPILE.c) $(srcdir)/xstrdup.c $(OUTPUT_OPTION) 1706 1707./xstrerror.$(objext): $(srcdir)/xstrerror.c config.h $(INCDIR)/ansidecl.h \ 1708 $(INCDIR)/libiberty.h 1709 if [ x"$(PICFLAG)" != x ]; then \ 1710 $(COMPILE.c) $(PICFLAG) $(srcdir)/xstrerror.c -o pic/$@; \ 1711 else true; fi 1712 if [ x"$(NOASANFLAG)" != x ]; then \ 1713 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xstrerror.c -o noasan/$@; \ 1714 else true; fi 1715 $(COMPILE.c) $(srcdir)/xstrerror.c $(OUTPUT_OPTION) 1716 1717./xstrndup.$(objext): $(srcdir)/xstrndup.c config.h $(INCDIR)/ansidecl.h \ 1718 $(INCDIR)/libiberty.h 1719 if [ x"$(PICFLAG)" != x ]; then \ 1720 $(COMPILE.c) $(PICFLAG) $(srcdir)/xstrndup.c -o pic/$@; \ 1721 else true; fi 1722 if [ x"$(NOASANFLAG)" != x ]; then \ 1723 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xstrndup.c -o noasan/$@; \ 1724 else true; fi 1725 $(COMPILE.c) $(srcdir)/xstrndup.c $(OUTPUT_OPTION) 1726 1727./xvasprintf.$(objext): $(srcdir)/xvasprintf.c config.h $(INCDIR)/ansidecl.h \ 1728 $(INCDIR)/libiberty.h $(srcdir)/vprintf-support.h 1729 if [ x"$(PICFLAG)" != x ]; then \ 1730 $(COMPILE.c) $(PICFLAG) $(srcdir)/xvasprintf.c -o pic/$@; \ 1731 else true; fi 1732 if [ x"$(NOASANFLAG)" != x ]; then \ 1733 $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xvasprintf.c -o noasan/$@; \ 1734 else true; fi 1735 $(COMPILE.c) $(srcdir)/xvasprintf.c $(OUTPUT_OPTION) 1736