binutils-gdb/libiberty/Makefile.in

1711 lines
65 KiB
Makefile
Raw Normal View History

# Makefile for the libiberty library.
# Originally written by K. Richard Pixley <rich@cygnus.com>.
1999-05-03 09:29:11 +02:00
#
# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
# 2012, 2014 Free Software Foundation
1999-05-03 09:29:11 +02:00
#
# This file is part of the libiberty library.
# Libiberty is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# Libiberty is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with libiberty; see the file COPYING.LIB. If not,
# write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
# Boston, MA 02110-1301, USA.
1999-05-03 09:29:11 +02:00
2003-01-30 21:00:42 +01:00
libiberty_topdir = @libiberty_topdir@
1999-05-03 09:29:11 +02:00
srcdir = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = @libdir@
2002-03-04 23:01:27 +01:00
includedir = @includedir@
target_header_dir = @target_header_dir@
2010-09-09 19:39:52 +02:00
objext = @OBJEXT@
1999-05-03 09:29:11 +02:00
SHELL = @SHELL@
# Multilib support variables.
MULTISRCTOP =
MULTIBUILDTOP =
MULTIDIRS =
MULTISUBDIR =
MULTIDO = true
MULTICLEAN = true
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
2003-01-30 21:00:42 +01:00
mkinstalldirs = $(SHELL) $(libiberty_topdir)/mkinstalldirs
1999-05-03 09:29:11 +02:00
2004-12-27 22:39:28 +01:00
# Some compilers can't handle cc -c blah.c -o foo/blah.o.
OUTPUT_OPTION = @OUTPUT_OPTION@
1999-05-03 09:29:11 +02:00
AR = @AR@
AR_FLAGS = rc
CC = @CC@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
1999-05-03 09:29:11 +02:00
RANLIB = @RANLIB@
2001-09-26 20:45:50 +02:00
MAKEINFO = @MAKEINFO@
PERL = @PERL@
1999-05-03 09:29:11 +02:00
PICFLAG = @PICFLAG@
NOASANFLAG = @NOASANFLAG@
1999-05-03 09:29:11 +02:00
MAKEOVERRIDES =
2004-01-22 20:34:11 +01:00
TARGETLIB = ./libiberty.a
TESTLIB = ./testlib.a
1999-05-03 09:29:11 +02:00
LIBOBJS = @LIBOBJS@
# A configuration can specify extra .o files that should be included,
# even if they are in libc. (Perhaps the libc version is buggy.)
EXTRA_OFILES =
# Flags to pass to a recursive make.
FLAGS_TO_PASS = \
"AR=$(AR)" \
"AR_FLAGS=$(AR_FLAGS)" \
"CC=$(CC)" \
"CFLAGS=$(CFLAGS)" \
"CPPFLAGS=$(CPPFLAGS)" \
2003-01-09 15:39:43 +01:00
"DESTDIR=$(DESTDIR)" \
1999-05-03 09:29:11 +02:00
"EXTRA_OFILES=$(EXTRA_OFILES)" \
"HDEFINES=$(HDEFINES)" \
"INSTALL=$(INSTALL)" \
"INSTALL_DATA=$(INSTALL_DATA)" \
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
"LDFLAGS=$(LDFLAGS)" \
"LOADLIBES=$(LOADLIBES)" \
"RANLIB=$(RANLIB)" \
"SHELL=$(SHELL)" \
"prefix=$(prefix)" \
"exec_prefix=$(exec_prefix)" \
"libdir=$(libdir)" \
"libsubdir=$(libsubdir)" \
"tooldir=$(tooldir)"
1999-05-03 09:29:11 +02:00
# Subdirectories to recurse into. We need to override this during cleaning
SUBDIRS = testsuite
2001-09-26 20:45:50 +02:00
# FIXME: add @BUILD_INFO@ once we're sure it works for everyone.
all: stamp-picdir stamp-noasandir $(TARGETLIB) required-list all-subdir
2010-03-15 18:33:40 +01:00
@: $(MAKE) ; $(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=all
1999-05-03 09:29:11 +02:00
.PHONY: check installcheck
check: check-subdir
installcheck: installcheck-subdir
1999-05-03 09:29:11 +02:00
@host_makefile_frag@
INCDIR=$(srcdir)/$(MULTISRCTOP)../include
COMPILE.c = $(CC) -c @DEFS@ $(CFLAGS) $(CPPFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
2004-01-22 20:34:11 +01:00
# Just to make sure we don't use a built-in rule with VPATH
2010-09-09 19:39:52 +02:00
.c.$(objext):
2004-01-22 20:34:11 +01:00
false
1999-05-03 09:29:11 +02:00
# NOTE: If you add new files to the library, add them to this list
2004-12-27 22:39:28 +01:00
# (alphabetical), and add them to REQUIRED_OFILES, or
# CONFIGURED_OFILES and funcs in configure.ac. Also run "make maint-deps"
# to build the new rules.
2002-01-22 21:14:53 +01:00
CFILES = alloca.c argv.c asprintf.c atexit.c \
basename.c bcmp.c bcopy.c bsearch.c bzero.c \
calloc.c choose-temp.c clock.c concat.c cp-demangle.c \
2009-07-25 02:01:58 +02:00
cp-demint.c cplus-dem.c crc32.c \
Sync libiberty with upstream GCC. include/ChangeLog * libiberty.h (PEX_STDOUT_APPEND): New flag. (PEX_STDERR_APPEND): Likewise. * demangle.h (DMGL_DLANG): New macro. (DMGL_STYLE_MASK): Add DMGL_DLANG. (demangling_styles): Add dlang_demangling. (DLANG_DEMANGLING_STYLE_STRING): New macro. (DLANG_DEMANGLING): New macro. (dlang_demangle): New prototype. * longlong.h: Add __udiv_w_sdiv prototype. libiberty/ChangeLog * cp-demangle.c (d_substitution): Handle abi tags on abbreviation. * pex-common.h (struct pex_funcs): Add new parameter for open_write field. * pex-unix.c (pex_unix_open_write): Add support for new parameter. * pex-djgpp.c (pex_djgpp_open_write): Likewise. * pex-win32.c (pex_win32_open_write): Likewise. * pex-common.c (pex_run_in_environment): Likewise. * Makefile.in (CFILES): Add d-demangle.c. (REQUIRED_OFILES): Add d-demangle.o. * cplus-dem.c (libiberty_demanglers): Add dlang_demangling case. (cplus_demangle): Likewise. * d-demangle.c: New file. * testsuite/Makefile.in (really-check): Add check-d-demangle. * testsuite/d-demangle-expected: New file. * simple-object-elf.c (simple_object_elf_write_ehdr): Correctly handle objects with more than SHN_LORESERVE sections. (simple_object_elf_write_shdr): Add sh_link parameter. (simple_object_elf_write_to_file): Correctly handle objects with more than SHN_LORESERVE sections. * cp-demangle.c (d_dump): Only access field from s_fixed part of the union for DEMANGLE_COMPONENT_FIXED_TYPE. (d_count_templates_scopes): Likewise. * testsuite/demangler-fuzzer.c: New file. * testsuite/Makefile.in (fuzz-demangler): New rule. (demangler-fuzzer): Likewise. (mostlyclean): Clean up demangler fuzzer.
2014-10-11 11:29:10 +02:00
d-demangle.c dwarfnames.c dyn-string.c \
2007-03-29 23:03:48 +02:00
fdmatch.c ffs.c fibheap.c filename_cmp.c floatformat.c \
fnmatch.c fopen_unlocked.c \
2002-01-22 21:14:53 +01:00
getcwd.c getopt.c getopt1.c getpagesize.c getpwd.c getruntime.c \
2005-03-10 02:06:07 +01:00
gettimeofday.c \
2002-01-22 21:14:53 +01:00
hashtab.c hex.c \
index.c insque.c \
lbasename.c \
lrealpath.c \
2002-11-22 22:02:14 +01:00
make-relative-prefix.c \
2009-03-28 00:07:30 +01:00
make-temp-file.c md5.c memchr.c memcmp.c memcpy.c memmem.c \
memmove.c mempcpy.c memset.c mkstemps.c \
2002-01-22 21:14:53 +01:00
objalloc.c obstack.c \
partition.c pexecute.c \
pex-common.c pex-djgpp.c pex-msdos.c pex-one.c \
2003-01-24 22:31:35 +01:00
pex-unix.c pex-win32.c \
2003-02-21 02:35:29 +01:00
physmem.c putenv.c \
2002-01-22 21:14:53 +01:00
random.c regex.c rename.c rindex.c \
2010-10-07 01:01:30 +02:00
safe-ctype.c setenv.c setproctitle.c sha1.c sigsetmask.c \
2010-11-02 16:20:47 +01:00
simple-object.c simple-object-coff.c simple-object-elf.c \
2013-01-07 21:28:44 +01:00
simple-object-mach-o.c simple-object-xcoff.c \
2010-10-07 01:01:30 +02:00
snprintf.c sort.c \
2011-07-22 16:37:58 +02:00
spaces.c splay-tree.c stack-limit.c stpcpy.c stpncpy.c \
strcasecmp.c strchr.c strdup.c strerror.c strncasecmp.c \
strncmp.c strrchr.c strsignal.c strstr.c strtod.c strtol.c \
2014-11-17 03:30:13 +01:00
strtoll.c strtoul.c strtoull.c strndup.c strnlen.c \
strverscmp.c timeval-utils.c tmpnam.c \
2005-03-01 15:33:00 +01:00
unlink-if-ordinary.c \
2015-01-07 18:32:24 +01:00
vasprintf.c vfork.c vfprintf.c vprintf.c vprintf-support.c \
vsnprintf.c vsprintf.c \
2002-01-22 21:14:53 +01:00
waitpid.c \
2015-01-07 18:32:24 +01:00
xasprintf.c xatexit.c xexit.c xmalloc.c xmemdup.c xstrdup.c \
xstrerror.c xstrndup.c xvasprintf.c
2002-01-22 21:14:53 +01:00
# These are always included in the library. The first four are listed
# first and by compile time to optimize parallel builds.
2008-03-25 02:02:13 +01:00
REQUIRED_OFILES = \
2010-09-09 19:39:52 +02:00
./regex.$(objext) ./cplus-dem.$(objext) ./cp-demangle.$(objext) \
./md5.$(objext) ./sha1.$(objext) ./alloca.$(objext) \
./argv.$(objext) \
./choose-temp.$(objext) ./concat.$(objext) \
Sync libiberty with upstream GCC. include/ChangeLog * libiberty.h (PEX_STDOUT_APPEND): New flag. (PEX_STDERR_APPEND): Likewise. * demangle.h (DMGL_DLANG): New macro. (DMGL_STYLE_MASK): Add DMGL_DLANG. (demangling_styles): Add dlang_demangling. (DLANG_DEMANGLING_STYLE_STRING): New macro. (DLANG_DEMANGLING): New macro. (dlang_demangle): New prototype. * longlong.h: Add __udiv_w_sdiv prototype. libiberty/ChangeLog * cp-demangle.c (d_substitution): Handle abi tags on abbreviation. * pex-common.h (struct pex_funcs): Add new parameter for open_write field. * pex-unix.c (pex_unix_open_write): Add support for new parameter. * pex-djgpp.c (pex_djgpp_open_write): Likewise. * pex-win32.c (pex_win32_open_write): Likewise. * pex-common.c (pex_run_in_environment): Likewise. * Makefile.in (CFILES): Add d-demangle.c. (REQUIRED_OFILES): Add d-demangle.o. * cplus-dem.c (libiberty_demanglers): Add dlang_demangling case. (cplus_demangle): Likewise. * d-demangle.c: New file. * testsuite/Makefile.in (really-check): Add check-d-demangle. * testsuite/d-demangle-expected: New file. * simple-object-elf.c (simple_object_elf_write_ehdr): Correctly handle objects with more than SHN_LORESERVE sections. (simple_object_elf_write_shdr): Add sh_link parameter. (simple_object_elf_write_to_file): Correctly handle objects with more than SHN_LORESERVE sections. * cp-demangle.c (d_dump): Only access field from s_fixed part of the union for DEMANGLE_COMPONENT_FIXED_TYPE. (d_count_templates_scopes): Likewise. * testsuite/demangler-fuzzer.c: New file. * testsuite/Makefile.in (fuzz-demangler): New rule. (demangler-fuzzer): Likewise. (mostlyclean): Clean up demangler fuzzer.
2014-10-11 11:29:10 +02:00
./cp-demint.$(objext) ./crc32.$(objext) ./d-demangle.$(objext) \
2012-04-27 20:03:26 +02:00
./dwarfnames.$(objext) ./dyn-string.$(objext) \
2010-09-09 19:39:52 +02:00
./fdmatch.$(objext) ./fibheap.$(objext) \
./filename_cmp.$(objext) ./floatformat.$(objext) \
./fnmatch.$(objext) ./fopen_unlocked.$(objext) \
./getopt.$(objext) ./getopt1.$(objext) ./getpwd.$(objext) \
./getruntime.$(objext) ./hashtab.$(objext) ./hex.$(objext) \
./lbasename.$(objext) ./lrealpath.$(objext) \
./make-relative-prefix.$(objext) ./make-temp-file.$(objext) \
2010-11-02 16:20:47 +01:00
./objalloc.$(objext) \
./obstack.$(objext) \
2010-09-09 19:39:52 +02:00
./partition.$(objext) ./pexecute.$(objext) ./physmem.$(objext) \
./pex-common.$(objext) ./pex-one.$(objext) \
2015-01-07 18:32:24 +01:00
./@pexecute@.$(objext) ./vprintf-support.$(objext) \
2010-11-02 16:20:47 +01:00
./safe-ctype.$(objext) \
./simple-object.$(objext) ./simple-object-coff.$(objext) \
./simple-object-elf.$(objext) ./simple-object-mach-o.$(objext) \
2013-01-07 21:28:44 +01:00
./simple-object-xcoff.$(objext) \
2010-11-02 16:20:47 +01:00
./sort.$(objext) ./spaces.$(objext) \
2011-07-22 16:37:58 +02:00
./splay-tree.$(objext) ./stack-limit.$(objext) \
2011-11-02 23:02:55 +01:00
./strerror.$(objext) ./strsignal.$(objext) \
./timeval-utils.$(objext) ./unlink-if-ordinary.$(objext) \
2015-01-07 18:32:24 +01:00
./xasprintf.$(objext) ./xatexit.$(objext) ./xexit.$(objext) \
./xmalloc.$(objext) ./xmemdup.$(objext) ./xstrdup.$(objext) \
./xstrerror.$(objext) ./xstrndup.$(objext) \
./xvasprintf.$(objext)
2001-03-06 19:27:14 +01:00
2001-09-26 20:45:50 +02:00
# These are all the objects that configure may add to the library via
2002-01-22 21:14:53 +01:00
# $funcs or EXTRA_OFILES. This list exists here only for "make
# maint-missing" and "make check".
2010-09-09 19:39:52 +02:00
CONFIGURED_OFILES = ./asprintf.$(objext) ./atexit.$(objext) \
./basename.$(objext) ./bcmp.$(objext) ./bcopy.$(objext) \
./bsearch.$(objext) ./bzero.$(objext) \
./calloc.$(objext) ./clock.$(objext) ./copysign.$(objext) \
./_doprnt.$(objext) \
./ffs.$(objext) \
./getcwd.$(objext) ./getpagesize.$(objext) \
./gettimeofday.$(objext) \
./index.$(objext) ./insque.$(objext) \
./memchr.$(objext) ./memcmp.$(objext) ./memcpy.$(objext) \
./memmem.$(objext) ./memmove.$(objext) \
./mempcpy.$(objext) ./memset.$(objext) ./mkstemps.$(objext) \
./pex-djgpp.$(objext) ./pex-msdos.$(objext) \
./pex-unix.$(objext) ./pex-win32.$(objext) \
./putenv.$(objext) \
./random.$(objext) ./rename.$(objext) ./rindex.$(objext) \
2010-10-07 01:01:30 +02:00
./setenv.$(objext) \
./setproctitle.$(objext) \
./sigsetmask.$(objext) ./snprintf.$(objext) \
2010-09-09 19:39:52 +02:00
./stpcpy.$(objext) ./stpncpy.$(objext) ./strcasecmp.$(objext) \
./strchr.$(objext) ./strdup.$(objext) ./strncasecmp.$(objext) \
2012-10-10 05:11:33 +02:00
./strncmp.$(objext) ./strndup.$(objext) ./strnlen.$(objext) \
./strrchr.$(objext) ./strstr.$(objext) ./strtod.$(objext) \
2014-11-17 03:30:13 +01:00
./strtol.$(objext) ./strtoul.$(objext) strtoll.$(objext) \
./strtoull.$(objext) ./tmpnam.$(objext) ./strverscmp.$(objext) \
2010-09-09 19:39:52 +02:00
./vasprintf.$(objext) ./vfork.$(objext) ./vfprintf.$(objext) \
./vprintf.$(objext) ./vsnprintf.$(objext) ./vsprintf.$(objext) \
./waitpid.$(objext)
2001-09-26 20:45:50 +02:00
2002-03-04 23:01:27 +01:00
# These files are installed if the library has been configured to do so.
INSTALLED_HEADERS = \
$(INCDIR)/ansidecl.h \
$(INCDIR)/demangle.h \
$(INCDIR)/dyn-string.h \
$(INCDIR)/fibheap.h \
$(INCDIR)/floatformat.h \
$(INCDIR)/hashtab.h \
$(INCDIR)/libiberty.h \
$(INCDIR)/objalloc.h \
$(INCDIR)/partition.h \
$(INCDIR)/safe-ctype.h \
$(INCDIR)/sort.h \
2011-11-02 23:02:55 +01:00
$(INCDIR)/splay-tree.h \
$(INCDIR)/timeval-utils.h
2002-03-04 23:01:27 +01:00
2004-12-27 22:39:28 +01:00
$(TARGETLIB): $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
-rm -f $(TARGETLIB) pic/$(TARGETLIB) noasan/$(TARGETLIB)
2004-12-27 22:39:28 +01:00
$(AR) $(AR_FLAGS) $(TARGETLIB) \
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS)
$(RANLIB) $(TARGETLIB)
if [ x"$(PICFLAG)" != x ]; then \
cd pic; \
2001-10-21 02:08:22 +02:00
$(AR) $(AR_FLAGS) $(TARGETLIB) \
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \
$(RANLIB) $(TARGETLIB); \
cd ..; \
else true; fi; \
if [ x"$(NOASANFLAG)" != x ]; then \
cd noasan; \
$(AR) $(AR_FLAGS) $(TARGETLIB) \
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \
$(RANLIB) $(TARGETLIB); \
cd ..; \
2001-10-21 02:08:22 +02:00
else true; fi
1999-05-03 09:29:11 +02:00
2004-12-27 22:39:28 +01:00
$(TESTLIB): $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
-rm -f $(TESTLIB)
$(AR) $(AR_FLAGS) $(TESTLIB) \
$(REQUIRED_OFILES) $(CONFIGURED_OFILES)
$(RANLIB) $(TESTLIB)
2002-01-22 21:14:53 +01:00
2001-09-26 20:45:50 +02:00
info: libiberty.info info-subdir
install-info: install-info-subdir
clean-info: clean-info-subdir
dvi: libiberty.dvi dvi-subdir
2007-03-05 23:15:41 +01:00
LIBIBERTY_PDFFILES = libiberty.pdf
pdf: $(LIBIBERTY_PDFFILES) pdf-subdir
.PHONY: install-pdf
pdf__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
install-pdf: $(LIBIBERTY_PDFFILES)
@$(NORMAL_INSTALL)
test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)"
@list='$(LIBIBERTY_PDFFILES)'; for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
f=$(pdf__strip_dir) \
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
done
2006-04-07 02:01:28 +02:00
# html, install-html targets
HTMLS = libiberty.html
html: $(HTMLS)
.PHONY: install-html install-html-am
2006-04-07 02:01:28 +02:00
NORMAL_INSTALL = :
mkdir_p = mkdir -p --
2010-09-09 19:39:52 +02:00
2006-04-07 02:01:28 +02:00
html__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
install-html: install-html-am
2006-04-07 02:01:28 +02:00
install-html-am: $(HTMLS)
@$(NORMAL_INSTALL)
test -z "$(htmldir)" || $(mkdir_p) "$(DESTDIR)$(htmldir)"
@list='$(HTMLS)'; for p in $$list; do \
if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
f=$(html__strip_dir) \
if test -d "$$d$$p"; then \
echo " $(mkdir_p) '$(DESTDIR)$(htmldir)/$$f'"; \
$(mkdir_p) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
$(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
else \
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
fi; \
done
2001-09-26 20:45:50 +02:00
TEXISRC = \
$(srcdir)/libiberty.texi \
$(srcdir)/copying-lib.texi \
$(srcdir)/obstacks.texi \
$(srcdir)/functions.texi
# Additional files that have texi snippets that need to be collected
2001-10-16 04:55:31 +02:00
# and sorted. Some are here because the sources are imported from
# elsewhere. Others represent headers in ../include.
2010-11-02 16:20:47 +01:00
TEXIFILES = fnmatch.txh pexecute.txh simple-object.txh
2001-09-26 20:45:50 +02:00
libiberty.info : $(srcdir)/libiberty.texi $(TEXISRC)
$(MAKEINFO) -I$(srcdir) $(srcdir)/libiberty.texi
libiberty.dvi : $(srcdir)/libiberty.texi $(TEXISRC)
texi2dvi $(srcdir)/libiberty.texi
2006-10-11 02:29:35 +02:00
libiberty.pdf : $(srcdir)/libiberty.texi $(TEXISRC)
texi2pdf $(srcdir)/libiberty.texi
2001-09-26 20:45:50 +02:00
libiberty.html : $(srcdir)/libiberty.texi $(TEXISRC)
2004-11-13 16:48:36 +01:00
$(MAKEINFO) --no-split --html -I$(srcdir) -o $@ $<
2001-09-26 20:45:50 +02:00
@MAINT@$(srcdir)/functions.texi : stamp-functions
@MAINT@ @true
@MAINT@stamp-functions : $(CFILES:%=$(srcdir)/%) $(TEXIFILES:%=$(srcdir)/%) $(srcdir)/gather-docs Makefile
2001-09-26 20:45:50 +02:00
@MAINT@@HAVE_PERL@ $(PERL) $(srcdir)/gather-docs $(srcdir) $(srcdir)/functions.texi $(CFILES) $(TEXIFILES)
@MAINT@ echo stamp > stamp-functions
1999-05-03 09:29:11 +02:00
INSTALL_DEST = @INSTALL_DEST@
install: install_to_$(INSTALL_DEST) install-subdir
install-strip: install
.PHONY: install install-strip
1999-05-03 09:29:11 +02:00
# This is tricky. Even though CC in the Makefile contains
# multilib-specific flags, it's overridden by FLAGS_TO_PASS from the
2008-10-16 04:47:08 +02:00
# default multilib, so we have to take CFLAGS into account as well,
# since it will be passed the multilib flags.
2008-10-16 04:47:08 +02:00
MULTIOSDIR = `$(CC) $(CFLAGS) -print-multi-os-directory`
1999-05-03 09:29:11 +02:00
install_to_libdir: all
2002-03-04 23:01:27 +01:00
if test -n "${target_header_dir}"; then \
2013-06-01 03:01:44 +02:00
${mkinstalldirs} $(DESTDIR)$(libdir)/$(MULTIOSDIR); \
$(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n; \
( cd $(DESTDIR)$(libdir)/$(MULTIOSDIR) ; chmod 644 $(TARGETLIB)n ;$(RANLIB) $(TARGETLIB)n ); \
mv -f $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB); \
case "${target_header_dir}" in \
/*) thd=${target_header_dir};; \
*) thd=${includedir}/${target_header_dir};; \
esac; \
${mkinstalldirs} $(DESTDIR)$${thd}; \
for h in ${INSTALLED_HEADERS}; do \
${INSTALL_DATA} $$h $(DESTDIR)$${thd}; \
done; \
2002-03-04 23:01:27 +01:00
fi
1999-05-03 09:29:11 +02:00
@$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
install_to_tooldir: all
${mkinstalldirs} $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)
$(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n
( cd $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR) ; chmod 644 $(TARGETLIB)n; $(RANLIB) $(TARGETLIB)n )
mv -f $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(tooldir)/lib/$(MULTIOSDIR)/$(TARGETLIB)
1999-05-03 09:29:11 +02:00
@$(MULTIDO) $(FLAGS_TO_PASS) multi-do DO=install
# required-list was used when building a shared bfd/opcodes/libiberty
# library. I don't know if it used by anything currently.
required-list: Makefile
echo $(REQUIRED_OFILES) > required-list
2004-12-27 22:39:28 +01:00
stamp-picdir:
if [ x"$(PICFLAG)" != x ] && [ ! -d pic ]; then \
mkdir pic; \
else true; fi
touch stamp-picdir
stamp-noasandir:
if [ x"$(NOASANFLAG)" != x ] && [ ! -d noasan ]; then \
mkdir noasan; \
else true; fi
touch stamp-noasandir
1999-05-03 09:29:11 +02:00
.PHONY: all etags tags ls clean stage1 stage2
etags tags: TAGS etags-subdir
1999-05-03 09:29:11 +02:00
2001-03-06 19:27:14 +01:00
TAGS: $(CFILES)
etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done`
1999-05-03 09:29:11 +02:00
# The standalone demangler (c++filt) has been moved to binutils.
2009-10-02 20:23:01 +02:00
# But make this target work anyway for demangler hacking.
demangle: $(ALL) $(srcdir)/cp-demangle.c
1999-05-03 09:29:11 +02:00
@echo "The standalone demangler, now named c++filt, is now"
@echo "a part of binutils."
2009-10-02 20:23:01 +02:00
$(CC) @DEFS@ $(CFLAGS) $(CPPFLAGS) -I. -I$(INCDIR) $(HDEFINES) \
$(srcdir)/cp-demangle.c -DSTANDALONE_DEMANGLER $(TARGETLIB) -o $@
1999-05-03 09:29:11 +02:00
ls:
2001-03-06 19:27:14 +01:00
@echo Makefile $(CFILES)
1999-05-03 09:29:11 +02:00
2001-09-26 20:45:50 +02:00
# Various targets for maintainers.
maint-missing :
2004-12-27 22:39:28 +01:00
@$(PERL) $(srcdir)/maint-tool -s $(srcdir) missing $(CFILES) $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
2001-09-26 20:45:50 +02:00
2004-12-27 22:39:28 +01:00
maint-buildall : $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
2001-09-26 20:45:50 +02:00
@true
2001-10-16 04:55:31 +02:00
maint-undoc : $(srcdir)/functions.texi
@$(PERL) $(srcdir)/maint-tool -s $(srcdir) undoc
2002-01-22 21:14:53 +01:00
maint-deps :
@$(PERL) $(srcdir)/maint-tool -s $(srcdir) deps $(INCDIR)
1999-05-03 09:29:11 +02:00
# Need to deal with profiled libraries, too.
# Cleaning has to be done carefully to ensure that we don't clean our SUBDIRS
# multiple times, hence our explicit recursion with an empty SUBDIRS.
mostlyclean: mostlyclean-subdir
-rm -rf *.$(objext) pic noasan core errs \#* *.E a.out
2009-04-26 04:25:10 +02:00
-rm -f errors dummy config.h stamp-*
-rm -f $(CONFIG_H) stamp-picdir stamp-noasandir
2001-09-26 20:45:50 +02:00
-rm -f libiberty.aux libiberty.cp libiberty.cps libiberty.fn libiberty.ky
-rm -f libiberty.log libiberty.tmp libiberty.tps libiberty.pg
-rm -f libiberty.pgs libiberty.toc libiberty.tp libiberty.tpl libiberty.vr
-rm -f libtexi.stamp
1999-05-03 09:29:11 +02:00
@$(MULTICLEAN) multi-clean DO=mostlyclean
clean: clean-subdir
$(MAKE) SUBDIRS="" mostlyclean
2000-12-09 17:10:41 +01:00
-rm -f *.a required-list tmpmulti.out
2006-10-11 02:29:35 +02:00
-rm -f libiberty.dvi libiberty.pdf libiberty.info* libiberty.html
1999-05-03 09:29:11 +02:00
@$(MULTICLEAN) multi-clean DO=clean
distclean: distclean-subdir
$(MAKE) SUBDIRS="" clean
1999-05-03 09:29:11 +02:00
@$(MULTICLEAN) multi-clean DO=distclean
2004-01-14 23:01:54 +01:00
-rm -f *~ Makefile config.cache config.status xhost-mkfrag TAGS multilib.out
2000-12-09 17:10:41 +01:00
-rm -f config.log
-rmdir testsuite 2>/dev/null
maintainer-clean realclean: maintainer-clean-subdir
$(MAKE) SUBDIRS="" distclean
1999-05-03 09:29:11 +02:00
force:
Makefile: $(srcdir)/Makefile.in config.status
CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
2001-11-26 23:25:58 +01:00
# Depending on Makefile makes sure that config.status has been re-run
# if needed. This prevents problems with parallel builds.
1999-05-03 09:29:11 +02:00
config.h: stamp-h ; @true
2004-01-22 20:34:11 +01:00
stamp-h: $(srcdir)/config.in config.status Makefile
CONFIG_FILES= CONFIG_HEADERS=config.h:$(srcdir)/config.in $(SHELL) ./config.status
1999-05-03 09:29:11 +02:00
config.status: $(srcdir)/configure
1999-05-03 09:29:11 +02:00
$(SHELL) ./config.status --recheck
2009-08-13 19:04:01 +02:00
AUTOCONF = autoconf
configure_deps = $(srcdir)/aclocal.m4 \
$(srcdir)/../config/acx.m4 \
$(srcdir)/../config/no-executables.m4 \
$(srcdir)/../config/override.m4 \
$(srcdir)/../config/warnings.m4 \
$(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(configure_deps)
cd $(srcdir) && $(AUTOCONF)
2008-07-24 15:51:49 +02:00
# Depending on config.h makes sure that config.status has been re-run
2001-11-26 23:25:58 +01:00
# if needed. This prevents problems with parallel builds, in case
# subdirectories need to run config.status also.
all-subdir check-subdir installcheck-subdir info-subdir \
2006-10-11 02:29:35 +02:00
install-info-subdir clean-info-subdir dvi-subdir pdf-subdir install-subdir \
etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \
2008-07-24 15:51:49 +02:00
maintainer-clean-subdir: config.h
@subdirs='$(SUBDIRS)'; \
target=`echo $@ | sed -e 's/-subdir//'`; \
for dir in $$subdirs ; do \
cd $$dir && $(MAKE) $(FLAGS_TO_PASS) $$target; \
done
$(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir stamp-noasandir
$(CONFIGURED_OFILES): stamp-picdir stamp-noasandir
2004-12-27 22:39:28 +01:00
2005-03-10 02:06:07 +01:00
# Don't export variables to the environment, in order to not confuse
# configure.
.NOEXPORT:
2002-01-22 21:14:53 +01:00
# The dependencies in the remainder of this file are automatically
# generated by "make maint-deps". Manual edits will be lost.
1999-05-03 09:29:11 +02:00
2010-09-09 19:39:52 +02:00
./_doprnt.$(objext): $(srcdir)/_doprnt.c config.h $(INCDIR)/ansidecl.h \
2002-01-22 21:14:53 +01:00
$(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/_doprnt.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/_doprnt.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/_doprnt.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./alloca.$(objext): $(srcdir)/alloca.c config.h $(INCDIR)/ansidecl.h \
2008-07-24 15:51:49 +02:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/alloca.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/alloca.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/alloca.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./argv.$(objext): $(srcdir)/argv.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/argv.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/argv.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/argv.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./asprintf.$(objext): $(srcdir)/asprintf.c config.h $(INCDIR)/ansidecl.h \
2005-05-11 04:10:00 +02:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/asprintf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/asprintf.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/asprintf.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./atexit.$(objext): $(srcdir)/atexit.c config.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/atexit.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/atexit.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/atexit.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./basename.$(objext): $(srcdir)/basename.c config.h $(INCDIR)/ansidecl.h \
2005-05-11 04:10:00 +02:00
$(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/basename.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/basename.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/basename.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./bcmp.$(objext): $(srcdir)/bcmp.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/bcmp.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bcmp.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/bcmp.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./bcopy.$(objext): $(srcdir)/bcopy.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/bcopy.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bcopy.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/bcopy.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./bsearch.$(objext): $(srcdir)/bsearch.c config.h $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/bsearch.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bsearch.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/bsearch.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./bzero.$(objext): $(srcdir)/bzero.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/bzero.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/bzero.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/bzero.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./calloc.$(objext): $(srcdir)/calloc.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/calloc.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/calloc.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/calloc.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./choose-temp.$(objext): $(srcdir)/choose-temp.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/choose-temp.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/choose-temp.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/choose-temp.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./clock.$(objext): $(srcdir)/clock.c config.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/clock.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/clock.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/clock.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./concat.$(objext): $(srcdir)/concat.c config.h $(INCDIR)/ansidecl.h \
2008-07-24 15:51:49 +02:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/concat.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/concat.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/concat.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./copysign.$(objext): $(srcdir)/copysign.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/copysign.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/copysign.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/copysign.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./cp-demangle.$(objext): $(srcdir)/cp-demangle.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(srcdir)/cp-demangle.h $(INCDIR)/demangle.h \
$(INCDIR)/dyn-string.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demangle.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/cp-demangle.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/cp-demangle.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./cp-demint.$(objext): $(srcdir)/cp-demint.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(srcdir)/cp-demangle.h $(INCDIR)/demangle.h \
2002-01-22 21:14:53 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/cp-demint.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/cp-demint.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/cp-demint.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./cplus-dem.$(objext): $(srcdir)/cplus-dem.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
$(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/cplus-dem.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/cplus-dem.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/cplus-dem.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./crc32.$(objext): $(srcdir)/crc32.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h
2009-07-25 02:01:58 +02:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/crc32.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/crc32.c -o noasan/$@; \
else true; fi
2009-07-25 02:01:58 +02:00
$(COMPILE.c) $(srcdir)/crc32.c $(OUTPUT_OPTION)
2014-11-17 03:30:13 +01:00
./d-demangle.$(objext): $(srcdir)/d-demangle.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
$(INCDIR)/safe-ctype.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/d-demangle.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/d-demangle.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/d-demangle.c $(OUTPUT_OPTION)
2012-10-10 05:11:33 +02:00
./dwarfnames.$(objext): $(srcdir)/dwarfnames.c $(INCDIR)/dwarf2.def \
$(INCDIR)/dwarf2.h
2012-04-27 20:03:26 +02:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/dwarfnames.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/dwarfnames.c -o noasan/$@; \
else true; fi
2012-04-27 20:03:26 +02:00
$(COMPILE.c) $(srcdir)/dwarfnames.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./dyn-string.$(objext): $(srcdir)/dyn-string.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/dyn-string.h $(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/dyn-string.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/dyn-string.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/dyn-string.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./fdmatch.$(objext): $(srcdir)/fdmatch.c config.h $(INCDIR)/ansidecl.h \
2005-05-11 04:10:00 +02:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/fdmatch.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fdmatch.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/fdmatch.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./ffs.$(objext): $(srcdir)/ffs.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/ffs.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/ffs.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/ffs.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./fibheap.$(objext): $(srcdir)/fibheap.c config.h $(INCDIR)/ansidecl.h \
2008-07-24 15:51:49 +02:00
$(INCDIR)/fibheap.h $(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/fibheap.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fibheap.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/fibheap.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2012-10-10 05:11:33 +02:00
./filename_cmp.$(objext): $(srcdir)/filename_cmp.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
$(INCDIR)/safe-ctype.h
2007-03-29 23:03:48 +02:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/filename_cmp.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/filename_cmp.c -o noasan/$@; \
else true; fi
2007-03-29 23:03:48 +02:00
$(COMPILE.c) $(srcdir)/filename_cmp.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./floatformat.$(objext): $(srcdir)/floatformat.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/floatformat.h $(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/floatformat.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/floatformat.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/floatformat.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./fnmatch.$(objext): $(srcdir)/fnmatch.c config.h $(INCDIR)/fnmatch.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/fnmatch.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fnmatch.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/fnmatch.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./fopen_unlocked.$(objext): $(srcdir)/fopen_unlocked.c config.h \
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
2005-04-11 21:32:04 +02:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/fopen_unlocked.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/fopen_unlocked.c -o noasan/$@; \
else true; fi
2005-04-11 21:32:04 +02:00
$(COMPILE.c) $(srcdir)/fopen_unlocked.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./getcwd.$(objext): $(srcdir)/getcwd.c config.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getcwd.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getcwd.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/getcwd.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./getopt.$(objext): $(srcdir)/getopt.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/getopt.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getopt.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getopt.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/getopt.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./getopt1.$(objext): $(srcdir)/getopt1.c config.h $(INCDIR)/getopt.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getopt1.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getopt1.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/getopt1.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./getpagesize.$(objext): $(srcdir)/getpagesize.c config.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getpagesize.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getpagesize.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/getpagesize.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./getpwd.$(objext): $(srcdir)/getpwd.c config.h $(INCDIR)/ansidecl.h \
2008-07-24 15:51:49 +02:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getpwd.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getpwd.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/getpwd.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./getruntime.$(objext): $(srcdir)/getruntime.c config.h $(INCDIR)/ansidecl.h \
2002-01-22 21:14:53 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/getruntime.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/getruntime.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/getruntime.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./gettimeofday.$(objext): $(srcdir)/gettimeofday.c config.h $(INCDIR)/ansidecl.h \
2005-03-10 02:06:07 +01:00
$(INCDIR)/libiberty.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/gettimeofday.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/gettimeofday.c -o noasan/$@; \
else true; fi
2005-03-10 02:06:07 +01:00
$(COMPILE.c) $(srcdir)/gettimeofday.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./hashtab.$(objext): $(srcdir)/hashtab.c config.h $(INCDIR)/ansidecl.h \
2008-07-24 15:51:49 +02:00
$(INCDIR)/hashtab.h $(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/hashtab.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/hashtab.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/hashtab.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./hex.$(objext): $(srcdir)/hex.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/hex.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/hex.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/hex.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./index.$(objext): $(srcdir)/index.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/index.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/index.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/index.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./insque.$(objext): $(srcdir)/insque.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/insque.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/insque.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/insque.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./lbasename.$(objext): $(srcdir)/lbasename.c config.h $(INCDIR)/ansidecl.h \
2012-10-10 05:11:33 +02:00
$(INCDIR)/filenames.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h \
2010-09-09 19:39:52 +02:00
$(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/lbasename.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/lbasename.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/lbasename.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./lrealpath.$(objext): $(srcdir)/lrealpath.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/lrealpath.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/lrealpath.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/lrealpath.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./make-relative-prefix.$(objext): $(srcdir)/make-relative-prefix.c config.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/make-relative-prefix.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/make-relative-prefix.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/make-relative-prefix.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./make-temp-file.$(objext): $(srcdir)/make-temp-file.c config.h \
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/make-temp-file.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/make-temp-file.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/make-temp-file.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./md5.$(objext): $(srcdir)/md5.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/md5.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/md5.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/md5.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/md5.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./memchr.$(objext): $(srcdir)/memchr.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memchr.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memchr.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/memchr.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./memcmp.$(objext): $(srcdir)/memcmp.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memcmp.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memcmp.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/memcmp.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./memcpy.$(objext): $(srcdir)/memcpy.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memcpy.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memcpy.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/memcpy.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./memmem.$(objext): $(srcdir)/memmem.c config.h
2009-03-28 00:07:30 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memmem.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memmem.c -o noasan/$@; \
else true; fi
2009-03-28 00:07:30 +01:00
$(COMPILE.c) $(srcdir)/memmem.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./memmove.$(objext): $(srcdir)/memmove.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memmove.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memmove.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/memmove.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./mempcpy.$(objext): $(srcdir)/mempcpy.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/mempcpy.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/mempcpy.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/mempcpy.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./memset.$(objext): $(srcdir)/memset.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/memset.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/memset.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/memset.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./mkstemps.$(objext): $(srcdir)/mkstemps.c config.h $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/mkstemps.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/mkstemps.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/mkstemps.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./msdos.$(objext): $(srcdir)/msdos.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/msdos.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/msdos.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/msdos.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./objalloc.$(objext): $(srcdir)/objalloc.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/objalloc.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/objalloc.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/objalloc.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/objalloc.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./obstack.$(objext): $(srcdir)/obstack.c config.h $(INCDIR)/obstack.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/obstack.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/obstack.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/obstack.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./partition.$(objext): $(srcdir)/partition.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h $(INCDIR)/partition.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/partition.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/partition.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/partition.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./pex-common.$(objext): $(srcdir)/pex-common.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-common.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-common.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pex-common.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./pex-djgpp.$(objext): $(srcdir)/pex-djgpp.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-djgpp.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-djgpp.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/pex-djgpp.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./pex-msdos.$(objext): $(srcdir)/pex-msdos.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h \
$(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-msdos.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-msdos.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/pex-msdos.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./pex-one.$(objext): $(srcdir)/pex-one.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-one.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-one.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pex-one.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./pex-unix.$(objext): $(srcdir)/pex-unix.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-unix.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-unix.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/pex-unix.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./pex-win32.$(objext): $(srcdir)/pex-win32.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h $(srcdir)/pex-common.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pex-win32.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pex-win32.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/pex-win32.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./pexecute.$(objext): $(srcdir)/pexecute.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/pexecute.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/pexecute.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/pexecute.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./physmem.$(objext): $(srcdir)/physmem.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/physmem.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/physmem.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/physmem.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./putenv.$(objext): $(srcdir)/putenv.c config.h $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/putenv.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/putenv.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/putenv.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./random.$(objext): $(srcdir)/random.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/random.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/random.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/random.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./regex.$(objext): $(srcdir)/regex.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/xregex.h $(INCDIR)/xregex2.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/regex.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/regex.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/regex.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./rename.$(objext): $(srcdir)/rename.c config.h $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/rename.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/rename.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/rename.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./rindex.$(objext): $(srcdir)/rindex.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/rindex.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/rindex.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/rindex.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./safe-ctype.$(objext): $(srcdir)/safe-ctype.c $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/safe-ctype.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/safe-ctype.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/safe-ctype.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./setenv.$(objext): $(srcdir)/setenv.c config.h $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/setenv.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/setenv.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/setenv.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-10-07 01:01:30 +02:00
./setproctitle.$(objext): $(srcdir)/setproctitle.c config.h $(INCDIR)/ansidecl.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/setproctitle.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/setproctitle.c -o noasan/$@; \
else true; fi
2010-10-07 01:01:30 +02:00
$(COMPILE.c) $(srcdir)/setproctitle.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./sha1.$(objext): $(srcdir)/sha1.c config.h $(INCDIR)/ansidecl.h $(INCDIR)/sha1.h
2008-03-25 02:02:13 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/sha1.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/sha1.c -o noasan/$@; \
else true; fi
2008-03-25 02:02:13 +01:00
$(COMPILE.c) $(srcdir)/sha1.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./sigsetmask.$(objext): $(srcdir)/sigsetmask.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/sigsetmask.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/sigsetmask.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/sigsetmask.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-11-02 16:20:47 +01:00
./simple-object-coff.$(objext): $(srcdir)/simple-object-coff.c config.h \
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
$(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-coff.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-coff.c -o noasan/$@; \
else true; fi
2010-11-02 16:20:47 +01:00
$(COMPILE.c) $(srcdir)/simple-object-coff.c $(OUTPUT_OPTION)
./simple-object-elf.$(objext): $(srcdir)/simple-object-elf.c config.h \
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
$(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-elf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-elf.c -o noasan/$@; \
else true; fi
2010-11-02 16:20:47 +01:00
$(COMPILE.c) $(srcdir)/simple-object-elf.c $(OUTPUT_OPTION)
./simple-object-mach-o.$(objext): $(srcdir)/simple-object-mach-o.c config.h \
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
$(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-mach-o.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-mach-o.c -o noasan/$@; \
else true; fi
2010-11-02 16:20:47 +01:00
$(COMPILE.c) $(srcdir)/simple-object-mach-o.c $(OUTPUT_OPTION)
2013-01-07 21:28:44 +01:00
./simple-object-xcoff.$(objext): $(srcdir)/simple-object-xcoff.c config.h \
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
$(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object-xcoff.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object-xcoff.c -o noasan/$@; \
else true; fi
2013-01-07 21:28:44 +01:00
$(COMPILE.c) $(srcdir)/simple-object-xcoff.c $(OUTPUT_OPTION)
2010-11-02 16:20:47 +01:00
./simple-object.$(objext): $(srcdir)/simple-object.c config.h \
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
$(srcdir)/simple-object-common.h $(INCDIR)/simple-object.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/simple-object.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/simple-object.c -o noasan/$@; \
else true; fi
2010-11-02 16:20:47 +01:00
$(COMPILE.c) $(srcdir)/simple-object.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./snprintf.$(objext): $(srcdir)/snprintf.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/snprintf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/snprintf.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/snprintf.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./sort.$(objext): $(srcdir)/sort.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h $(INCDIR)/sort.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/sort.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/sort.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/sort.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./spaces.$(objext): $(srcdir)/spaces.c config.h $(INCDIR)/ansidecl.h \
2008-07-24 15:51:49 +02:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/spaces.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/spaces.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/spaces.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./splay-tree.$(objext): $(srcdir)/splay-tree.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h $(INCDIR)/splay-tree.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/splay-tree.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/splay-tree.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/splay-tree.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2012-10-10 05:11:33 +02:00
./stack-limit.$(objext): $(srcdir)/stack-limit.c config.h $(INCDIR)/ansidecl.h
2011-07-22 16:37:58 +02:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/stack-limit.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/stack-limit.c -o noasan/$@; \
else true; fi
2011-07-22 16:37:58 +02:00
$(COMPILE.c) $(srcdir)/stack-limit.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./stpcpy.$(objext): $(srcdir)/stpcpy.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/stpcpy.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/stpcpy.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/stpcpy.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./stpncpy.$(objext): $(srcdir)/stpncpy.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/stpncpy.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/stpncpy.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/stpncpy.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strcasecmp.$(objext): $(srcdir)/strcasecmp.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strcasecmp.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strcasecmp.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strcasecmp.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strchr.$(objext): $(srcdir)/strchr.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strchr.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strchr.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strchr.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strdup.$(objext): $(srcdir)/strdup.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strdup.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strdup.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strdup.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strerror.$(objext): $(srcdir)/strerror.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strerror.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strerror.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strerror.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strncasecmp.$(objext): $(srcdir)/strncasecmp.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strncasecmp.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strncasecmp.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strncasecmp.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strncmp.$(objext): $(srcdir)/strncmp.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strncmp.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strncmp.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strncmp.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strndup.$(objext): $(srcdir)/strndup.c $(INCDIR)/ansidecl.h
2005-03-25 05:57:08 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strndup.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strndup.c -o noasan/$@; \
else true; fi
2005-03-25 05:57:08 +01:00
$(COMPILE.c) $(srcdir)/strndup.c $(OUTPUT_OPTION)
2012-10-10 05:11:33 +02:00
./strnlen.$(objext): $(srcdir)/strnlen.c config.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strnlen.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strnlen.c -o noasan/$@; \
else true; fi
2012-10-10 05:11:33 +02:00
$(COMPILE.c) $(srcdir)/strnlen.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./strrchr.$(objext): $(srcdir)/strrchr.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strrchr.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strrchr.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strrchr.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strsignal.$(objext): $(srcdir)/strsignal.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strsignal.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strsignal.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strsignal.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strstr.$(objext): $(srcdir)/strstr.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strstr.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strstr.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strstr.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strtod.$(objext): $(srcdir)/strtod.c $(INCDIR)/ansidecl.h \
$(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtod.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtod.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strtod.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./strtol.$(objext): $(srcdir)/strtol.c config.h $(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtol.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtol.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strtol.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2014-11-17 03:30:13 +01:00
./strtoll.$(objext): $(srcdir)/strtoll.c config.h $(INCDIR)/safe-ctype.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtoll.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtoll.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strtoll.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./strtoul.$(objext): $(srcdir)/strtoul.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/safe-ctype.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtoul.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtoul.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/strtoul.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2014-11-17 03:30:13 +01:00
./strtoull.$(objext): $(srcdir)/strtoull.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/safe-ctype.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strtoull.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strtoull.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strtoull.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./strverscmp.$(objext): $(srcdir)/strverscmp.c $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/strverscmp.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/strverscmp.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/strverscmp.c $(OUTPUT_OPTION)
2011-11-02 23:02:55 +01:00
./timeval-utils.$(objext): $(srcdir)/timeval-utils.c config.h \
$(INCDIR)/timeval-utils.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/timeval-utils.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/timeval-utils.c -o noasan/$@; \
else true; fi
2011-11-02 23:02:55 +01:00
$(COMPILE.c) $(srcdir)/timeval-utils.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./tmpnam.$(objext): $(srcdir)/tmpnam.c
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/tmpnam.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/tmpnam.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/tmpnam.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./unlink-if-ordinary.$(objext): $(srcdir)/unlink-if-ordinary.c config.h \
2005-03-10 02:06:07 +01:00
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
2005-03-01 15:33:00 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/unlink-if-ordinary.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/unlink-if-ordinary.c -o noasan/$@; \
else true; fi
2005-03-01 15:33:00 +01:00
$(COMPILE.c) $(srcdir)/unlink-if-ordinary.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./vasprintf.$(objext): $(srcdir)/vasprintf.c config.h $(INCDIR)/ansidecl.h \
2015-01-07 18:32:24 +01:00
$(INCDIR)/libiberty.h $(srcdir)/vprintf-support.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vasprintf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vasprintf.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/vasprintf.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./vfork.$(objext): $(srcdir)/vfork.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vfork.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vfork.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/vfork.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./vfprintf.$(objext): $(srcdir)/vfprintf.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vfprintf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vfprintf.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/vfprintf.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2015-01-07 18:32:24 +01:00
./vprintf-support.$(objext): $(srcdir)/vprintf-support.c config.h \
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vprintf-support.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vprintf-support.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/vprintf-support.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./vprintf.$(objext): $(srcdir)/vprintf.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vprintf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vprintf.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/vprintf.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./vsnprintf.$(objext): $(srcdir)/vsnprintf.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vsnprintf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vsnprintf.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/vsnprintf.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./vsprintf.$(objext): $(srcdir)/vsprintf.c $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/vsprintf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/vsprintf.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/vsprintf.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./waitpid.$(objext): $(srcdir)/waitpid.c config.h $(INCDIR)/ansidecl.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/waitpid.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/waitpid.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/waitpid.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2015-01-07 18:32:24 +01:00
./xasprintf.$(objext): $(srcdir)/xasprintf.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xasprintf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xasprintf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/xasprintf.c $(OUTPUT_OPTION)
2010-09-09 19:39:52 +02:00
./xatexit.$(objext): $(srcdir)/xatexit.c config.h $(INCDIR)/ansidecl.h \
2005-05-11 04:10:00 +02:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xatexit.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xatexit.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/xatexit.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./xexit.$(objext): $(srcdir)/xexit.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xexit.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xexit.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/xexit.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./xmalloc.$(objext): $(srcdir)/xmalloc.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xmalloc.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xmalloc.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/xmalloc.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./xmemdup.$(objext): $(srcdir)/xmemdup.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xmemdup.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xmemdup.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/xmemdup.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./xstrdup.$(objext): $(srcdir)/xstrdup.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xstrdup.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xstrdup.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/xstrdup.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./xstrerror.$(objext): $(srcdir)/xstrerror.c config.h $(INCDIR)/ansidecl.h \
2004-01-22 20:34:11 +01:00
$(INCDIR)/libiberty.h
2004-12-27 22:39:28 +01:00
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xstrerror.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xstrerror.c -o noasan/$@; \
else true; fi
2004-12-27 22:39:28 +01:00
$(COMPILE.c) $(srcdir)/xstrerror.c $(OUTPUT_OPTION)
2004-01-22 20:34:11 +01:00
2010-09-09 19:39:52 +02:00
./xstrndup.$(objext): $(srcdir)/xstrndup.c config.h $(INCDIR)/ansidecl.h \
2005-03-25 05:57:08 +01:00
$(INCDIR)/libiberty.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xstrndup.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xstrndup.c -o noasan/$@; \
else true; fi
2005-03-25 05:57:08 +01:00
$(COMPILE.c) $(srcdir)/xstrndup.c $(OUTPUT_OPTION)
2015-01-07 18:32:24 +01:00
./xvasprintf.$(objext): $(srcdir)/xvasprintf.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/libiberty.h $(srcdir)/vprintf-support.h
if [ x"$(PICFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(srcdir)/xvasprintf.c -o pic/$@; \
else true; fi
if [ x"$(NOASANFLAG)" != x ]; then \
$(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/xvasprintf.c -o noasan/$@; \
else true; fi
$(COMPILE.c) $(srcdir)/xvasprintf.c $(OUTPUT_OPTION)