]> git.ipfire.org Git - thirdparty/gcc.git/blame - lto-plugin/Makefile.am
* omp-low.c (lower_rec_input_clauses): Handle references properly
[thirdparty/gcc.git] / lto-plugin / Makefile.am
CommitLineData
1cdecb0b 1## Process this file with automake to produce Makefile.in.
7bfefa9d 2
3ACLOCAL_AMFLAGS = -I .. -I ../config
a82c8807 4AUTOMAKE_OPTIONS = no-dependencies
7bfefa9d 5
0812bb06 6gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
7bfefa9d 7target_noncanonical := @target_noncanonical@
a3d93be3 8libexecsubdir := $(libexecdir)/gcc/$(real_target_noncanonical)/$(gcc_version)$(accel_dir_suffix)
7bfefa9d 9
25630dc7 10AM_CPPFLAGS = -I$(top_srcdir)/../include $(DEFS)
d83cb07d 11AM_CFLAGS = @ac_lto_plugin_warn_cflags@
23f2511f 12AM_LDFLAGS = @ac_lto_plugin_ldflags@
002b97d8 13AM_LIBTOOLFLAGS = --tag=disable-static
f945635a 14override CFLAGS := $(filter-out -fsanitize=address,$(CFLAGS))
15override LDFLAGS := $(filter-out -fsanitize=address,$(LDFLAGS))
7bfefa9d 16
17libexecsub_LTLIBRARIES = liblto_plugin.la
487d98ee 18gcc_build_dir = @gcc_build_dir@
98de5262 19in_gcc_libs = $(foreach lib, $(libexecsub_LTLIBRARIES), $(gcc_build_dir)/$(lib))
7bfefa9d 20
25630dc7 21liblto_plugin_la_SOURCES = lto-plugin.c
e389d606 22# Note that we intentionally override the bindir supplied by ACX_LT_HOST_FLAGS.
23f2511f 23liblto_plugin_la_LDFLAGS = $(AM_LDFLAGS) \
e389d606 24 $(lt_host_flags) -module -bindir $(libexecsubdir)
25# Can be simplified when libiberty becomes a normal convenience library.
26libiberty = $(with_libiberty)/libiberty.a
27libiberty_noasan = $(with_libiberty)/noasan/libiberty.a
28libiberty_pic = $(with_libiberty)/pic/libiberty.a
29Wc=-Wc,
30liblto_plugin_la_LIBADD = \
31 $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
32 $(if $(wildcard $(libiberty_pic)),$(Wc)$(libiberty_pic),))
33liblto_plugin_la_LDFLAGS += \
34 $(if $(wildcard $(libiberty_noasan)),, \
35 $(if $(wildcard $(libiberty_pic)),,-Wc,$(libiberty)))
36liblto_plugin_la_DEPENDENCIES = \
37 $(if $(wildcard $(libiberty_noasan)),$(libiberty_noasan), \
38 $(if $(wildcard $(libiberty_pic)),$(libiberty_pic),))
39LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
478532eb 40liblto_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
41 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
42 $(liblto_plugin_la_LDFLAGS) $(LTLDFLAGS) -o $@
4d357b25 43
507c6564 44all-local: $(in_gcc_libs)
4d357b25 45
98de5262 46$(in_gcc_libs) : $(gcc_build_dir)/%: %
47 @if test "X`dlname=; . ./$*; echo dlname:$$dlname`" = "Xdlname:"; then \
48 echo WARNING: $* is static, not copying to $@ >&2 ; \
49 else \
50 $(mkinstalldirs) $(gcc_build_dir) && \
51 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $* `pwd`/$@ ; \
52 fi