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