OSDN Git Service

2011-02-07 Kai Tietz <kai.tietz@onevision.com>
[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 AM_CPPFLAGS = -I$(top_srcdir)/../include $(DEFS)
11 AM_CFLAGS = -Wall -Werror
12 AM_LIBTOOLFLAGS = --tag=disable-static
13
14 libexecsub_LTLIBRARIES = liblto_plugin.la
15
16 # Can be removed when libiberty becomes a normal convenience library
17 Wc=-Wc,
18
19 liblto_plugin_la_SOURCES = lto-plugin.c
20 liblto_plugin_la_LIBADD = \
21         $(if $(wildcard ../libiberty/pic/libiberty.a),$(Wc)../libiberty/pic/libiberty.a,)
22 # Note that we intentionally override the bindir supplied by ACX_LT_HOST_FLAGS
23 liblto_plugin_la_LDFLAGS = $(lt_host_flags) -bindir $(libexecsubdir) \
24         $(if $(wildcard ../libiberty/pic/libiberty.a),,-Wc,../libiberty/libiberty.a)
25 liblto_plugin_la_DEPENDENCIES = $(if $(wildcard \
26         ../libiberty/pic/libiberty.a),../libiberty/pic/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