[libgomp, nvptx] Remove hard-coded const in nvptx_open_device
[gcc.git] / lto-plugin / Makefile.am
1 ## Process this file with automake to produce Makefile.in.
2
3 ACLOCAL_AMFLAGS = -I .. -I ../config
4 AUTOMAKE_OPTIONS = no-dependencies
5
6 gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
7 target_noncanonical := @target_noncanonical@
8 libexecsubdir := $(libexecdir)/gcc/$(real_target_noncanonical)/$(gcc_version)$(accel_dir_suffix)
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 override CFLAGS := $(filter-out -fsanitize=address,$(CFLAGS))
15 override LDFLAGS := $(filter-out -fsanitize=address,$(LDFLAGS))
16
17 libexecsub_LTLIBRARIES = liblto_plugin.la
18 gcc_build_dir = @gcc_build_dir@
19 in_gcc_libs = $(foreach lib, $(libexecsub_LTLIBRARIES), $(gcc_build_dir)/$(lib))
20
21 liblto_plugin_la_SOURCES = lto-plugin.c
22 # Note that we intentionally override the bindir supplied by ACX_LT_HOST_FLAGS.
23 liblto_plugin_la_LDFLAGS = $(AM_LDFLAGS) \
24 $(lt_host_flags) -module -bindir $(libexecsubdir)
25 # Can be simplified when libiberty becomes a normal convenience library.
26 libiberty = $(with_libiberty)/libiberty.a
27 libiberty_noasan = $(with_libiberty)/noasan/libiberty.a
28 libiberty_pic = $(with_libiberty)/pic/libiberty.a
29 Wc=-Wc,
30 liblto_plugin_la_LIBADD = \
31 $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
32 $(if $(wildcard $(libiberty_pic)),$(Wc)$(libiberty_pic),))
33 liblto_plugin_la_LDFLAGS += \
34 $(if $(wildcard $(libiberty_noasan)),, \
35 $(if $(wildcard $(libiberty_pic)),,-Wc,$(libiberty)))
36 liblto_plugin_la_DEPENDENCIES = \
37 $(if $(wildcard $(libiberty_noasan)),$(libiberty_noasan), \
38 $(if $(wildcard $(libiberty_pic)),$(libiberty_pic),))
39 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
40 liblto_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
41 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
42 $(liblto_plugin_la_LDFLAGS) $(LTLDFLAGS) -o $@
43
44 all-local: $(in_gcc_libs)
45
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