1# Makefile.am is used by automake 1.11 to generate Makefile.in. 2 3ACLOCAL_AMFLAGS = -I .. -I ../config 4AUTOMAKE_OPTIONS = no-dependencies 5 6gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER) 7target_noncanonical := @target_noncanonical@ 8libexecsubdir := $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version) 9 10# How to find libelf 11LIBELFLIBS = @LIBELFLIBS@ 12LIBELFINC = @LIBELFINC@ 13 14AM_CPPFLAGS = -I$(top_srcdir)/../include $(LIBELFINC) 15AM_CFLAGS = -Wall -Werror 16 17libexecsub_LTLIBRARIES = liblto_plugin.la 18 19liblto_plugin_la_SOURCES = lto-plugin.c 20liblto_plugin_la_LIBADD = $(LIBELFLIBS) ../libiberty/pic/libiberty.a 21