re PR sanitizer/56781 (boostrap-asan failure: fixincl fails to link (missing -lasan))
[gcc.git] / lto-plugin / Makefile.am
1 # Makefile.am is used by automake 1.11 to generate Makefile.in.
2
3 ACLOCAL_AMFLAGS = -I .. -I ../config
4 AUTOMAKE_OPTIONS = no-dependencies
5
6 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
7 target_noncanonical := @target_noncanonical@
8 libexecsubdir := $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
9
10 AM_CPPFLAGS = -I$(top_srcdir)/../include $(DEFS)
11 AM_CFLAGS = @ac_lto_plugin_warn_cflags@
12 AM_LDFLAGS = @ac_lto_plugin_ldflags@
13 AM_LIBTOOLFLAGS = --tag=disable-static
14
15 libexecsub_LTLIBRARIES = liblto_plugin.la
16 gcc_build_dir = ../$(host_subdir)/gcc
17 in_gcc_libs = $(foreach lib, $(libexecsub_LTLIBRARIES), $(gcc_build_dir)/$(lib))
18
19 # Can be removed when libiberty becomes a normal convenience library
20 Wc=-Wc,
21 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
22
23 liblto_plugin_la_SOURCES = lto-plugin.c
24 liblto_plugin_la_LIBADD = \
25 $(if $(wildcard ../libiberty/pic/libiberty.a),$(Wc)../libiberty/pic/libiberty.a,)
26 # Note that we intentionally override the bindir supplied by ACX_LT_HOST_FLAGS
27 liblto_plugin_la_LDFLAGS = $(AM_LDFLAGS) \
28 $(lt_host_flags) -module -bindir $(libexecsubdir) \
29 $(if $(wildcard ../libiberty/pic/libiberty.a),,-Wc,../libiberty/libiberty.a)
30 liblto_plugin_la_DEPENDENCIES = $(if $(wildcard \
31 ../libiberty/pic/libiberty.a),../libiberty/pic/libiberty.a,)
32 liblto_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
33 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
34 $(liblto_plugin_la_LDFLAGS) $(LTLDFLAGS) -o $@
35
36 all-local: $(in_gcc_libs)
37
38 $(in_gcc_libs) : $(gcc_build_dir)/%: %
39 @if test "X`dlname=; . ./$*; echo dlname:$$dlname`" = "Xdlname:"; then \
40 echo WARNING: $* is static, not copying to $@ >&2 ; \
41 else \
42 $(mkinstalldirs) $(gcc_build_dir) && \
43 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $* `pwd`/$@ ; \
44 fi