Blame libebl/Makefile.am

Packit 032894
## Process this file with automake to create Makefile.in
Packit 032894
##
Packit 032894
## Copyright (C) 2000-2010, 2013, 2016, 2017 Red Hat, Inc.
Packit 032894
## This file is part of elfutils.
Packit 032894
##
Packit 032894
## This file is free software; you can redistribute it and/or modify
Packit 032894
## it under the terms of either
Packit 032894
##
Packit 032894
##   * the GNU Lesser General Public License as published by the Free
Packit 032894
##     Software Foundation; either version 3 of the License, or (at
Packit 032894
##     your option) any later version
Packit 032894
##
Packit 032894
## or
Packit 032894
##
Packit 032894
##   * the GNU General Public License as published by the Free
Packit 032894
##     Software Foundation; either version 2 of the License, or (at
Packit 032894
##     your option) any later version
Packit 032894
##
Packit 032894
## or both in parallel, as here.
Packit 032894
##
Packit 032894
## elfutils is distributed in the hope that it will be useful, but
Packit 032894
## WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 032894
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 032894
## General Public License for more details.
Packit 032894
##
Packit 032894
## You should have received copies of the GNU General Public License and
Packit 032894
## the GNU Lesser General Public License along with this program.  If
Packit 032894
## not, see <http://www.gnu.org/licenses/>.
Packit 032894
##
Packit 032894
include $(top_srcdir)/config/eu.am
Packit 032894
if BUILD_STATIC
Packit 032894
AM_CFLAGS += $(fpic_CFLAGS)
Packit 032894
endif
Packit 032894
AM_CPPFLAGS += -I$(srcdir)/../libelf -I$(srcdir)/../libdw -I$(srcdir)/../libasm
Packit 032894
VERSION = 1
Packit 032894
Packit 032894
noinst_LIBRARIES = libebl.a libebl_pic.a
Packit 032894
Packit 032894
libebl_a_SOURCES = eblopenbackend.c eblclosebackend.c eblreloctypename.c \
Packit 032894
		   eblsegmenttypename.c eblsectiontypename.c \
Packit 032894
		   eblmachineflagname.c eblsymboltypename.c \
Packit 032894
		   ebldynamictagname.c eblsectionname.c \
Packit 032894
		   eblsymbolbindingname.c eblbackendname.c eblosabiname.c \
Packit 032894
		   eblmachineflagcheck.c eblmachinesectionflagcheck.c \
Packit 032894
		   eblreloctypecheck.c eblrelocvaliduse.c \
Packit 032894
		   eblrelocsimpletype.c ebldynamictagcheck.c \
Packit 032894
		   eblcorenotetypename.c eblobjnotetypename.c eblcorenote.c \
Packit 032894
		   eblobjnote.c ebldebugscnp.c eblgotpcreloccheck.c \
Packit 032894
		   eblcopyrelocp.c eblsectionstripp.c eblelfclass.c \
Packit 032894
		   eblelfdata.c eblelfmachine.c ebl_check_special_symbol.c \
Packit 032894
		   eblbsspltp.c eblretval.c eblreginfo.c eblnonerelocp.c \
Packit 032894
		   eblrelativerelocp.c eblsysvhashentrysize.c eblauxvinfo.c \
Packit 032894
		   eblcheckobjattr.c ebl_check_special_section.c \
Packit 032894
		   ebl_syscall_abi.c eblabicfi.c eblstother.c eblinitreg.c \
Packit 032894
		   ebldwarftoregno.c eblnormalizepc.c eblunwind.c \
Packit 032894
		   eblresolvesym.c eblcheckreloctargettype.c \
Packit 032894
		   ebl_data_marker_symbol.c
Packit 032894
Packit 032894
libebl_pic_a_SOURCES =
Packit 032894
am_libebl_pic_a_OBJECTS = $(libebl_a_SOURCES:.c=.os)
Packit 032894
Packit 032894
noinst_HEADERS = libebl.h libeblP.h ebl-hooks.h
Packit 032894
Packit 032894
MOSTLYCLEANFILES = $(am_libebl_pic_a_OBJECTS)