076c7ebe99
2009-10-13 Richard Guenther <rguenther@suse.de> * Makefile.am (liblto_plugin_la_LIBADD): Link against the correct libiberty. * Makefile.in: Regenerated. From-SVN: r152698
20 lines
585 B
Makefile
20 lines
585 B
Makefile
# 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) ../libiberty/pic/libiberty.a
|