diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-03 21:10:11 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-03 21:10:11 +0000 |
commit | 7bfefa9d2c82e804ef4e59772f4060ac325bf99a (patch) | |
tree | 3a9882bd235e5026410e5397a5e46a97ece50b48 /lto-plugin/Makefile.am | |
parent | 7271d48ec9cd1a9aa3893d1d95e1d4a1c5882c37 (diff) | |
download | gcc-7bfefa9d2c82e804ef4e59772f4060ac325bf99a.tar.gz |
Merge lto branch into trunk.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@152434 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'lto-plugin/Makefile.am')
-rw-r--r-- | lto-plugin/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lto-plugin/Makefile.am b/lto-plugin/Makefile.am new file mode 100644 index 00000000000..b5dd5fc4716 --- /dev/null +++ b/lto-plugin/Makefile.am @@ -0,0 +1,19 @@ +# Makefile.am is used by automake 1.11 to generate Makefile.in. + +ACLOCAL_AMFLAGS = -I .. -I ../config + +gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER) +target_noncanonical := @target_noncanonical@ +libexecsubdir := $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version) + +# How to find libelf +LIBELFLIBS = @LIBELFLIBS@ +LIBELFINC = @LIBELFINC@ + +AM_CPPFLAGS = -I$(top_srcdir)/../include $(LIBELFINC) +AM_CFLAGS = -Wall -Werror + +libexecsub_LTLIBRARIES = liblto_plugin.la + +liblto_plugin_la_SOURCES = lto-plugin.c +liblto_plugin_la_LIBADD = $(LIBELFLIBS) -L../libiberty/pic -liberty |