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