OSDN Git Service

* ipa.c (cgraph_externally_visible_p, varpool_externally_visible_p,
[pf3gnuchains/gcc-fork.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 # How to find libelf
11 LIBELFLIBS = @LIBELFLIBS@
12 LIBELFINC = @LIBELFINC@
13
14 # Which object format to parse.
15 LTO_FORMAT = @LTO_FORMAT@
16
17 AM_CPPFLAGS = -I$(top_srcdir)/../include $(LIBELFINC)
18 AM_CFLAGS = -Wall -Werror
19
20 libexecsub_LTLIBRARIES = liblto_plugin.la
21
22 liblto_plugin_la_SOURCES = lto-plugin.c lto-plugin-$(LTO_FORMAT).c
23 liblto_plugin_la_LIBADD = $(LIBELFLIBS) \
24         $(if $(wildcard ../libiberty/pic/libiberty.a),../libiberty/pic/libiberty.a,)
25 liblto_plugin_la_LDFLAGS = -no-undefined -bindir $(libexecsubdir) \
26         $(if $(wildcard ../libiberty/pic/libiberty.a),,-Wc,../libiberty/libiberty.a)
27
28 all: copy_lto_plugin
29
30 copy_lto_plugin: all-am
31         $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $(libexecsub_LTLIBRARIES) `pwd`/../gcc/
32