Brian Silverman | 8649792 | 2018-02-10 19:28:39 -0500 | [diff] [blame] | 1 | ## Process this file with automake to create Makefile.in |
| 2 | ## |
| 3 | ## Copyright (C) 2000-2010, 2013, 2016, 2017 Red Hat, Inc. |
| 4 | ## This file is part of elfutils. |
| 5 | ## |
| 6 | ## This file is free software; you can redistribute it and/or modify |
| 7 | ## it under the terms of either |
| 8 | ## |
| 9 | ## * the GNU Lesser General Public License as published by the Free |
| 10 | ## Software Foundation; either version 3 of the License, or (at |
| 11 | ## your option) any later version |
| 12 | ## |
| 13 | ## or |
| 14 | ## |
| 15 | ## * the GNU General Public License as published by the Free |
| 16 | ## Software Foundation; either version 2 of the License, or (at |
| 17 | ## your option) any later version |
| 18 | ## |
| 19 | ## or both in parallel, as here. |
| 20 | ## |
| 21 | ## elfutils is distributed in the hope that it will be useful, but |
| 22 | ## WITHOUT ANY WARRANTY; without even the implied warranty of |
| 23 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 24 | ## General Public License for more details. |
| 25 | ## |
| 26 | ## You should have received copies of the GNU General Public License and |
| 27 | ## the GNU Lesser General Public License along with this program. If |
| 28 | ## not, see <http://www.gnu.org/licenses/>. |
| 29 | ## |
| 30 | include $(top_srcdir)/config/eu.am |
| 31 | AM_CFLAGS += $(fpic_CFLAGS) |
| 32 | AM_CPPFLAGS += -I$(srcdir)/../libelf -I$(srcdir)/../libdw -I$(srcdir)/../libasm |
| 33 | VERSION = 1 |
| 34 | LIBEBL_SUBDIR = @LIBEBL_SUBDIR@ |
| 35 | |
| 36 | lib_LIBRARIES = libebl.a |
| 37 | |
| 38 | pkginclude_HEADERS = libebl.h |
| 39 | |
| 40 | gen_SOURCES = eblopenbackend.c eblclosebackend.c \ |
| 41 | eblreloctypename.c eblsegmenttypename.c \ |
| 42 | eblsectiontypename.c eblmachineflagname.c \ |
| 43 | eblsymboltypename.c ebldynamictagname.c eblsectionname.c \ |
| 44 | eblsymbolbindingname.c eblbackendname.c eblosabiname.c \ |
| 45 | eblmachineflagcheck.c eblmachinesectionflagcheck.c \ |
| 46 | eblreloctypecheck.c eblrelocvaliduse.c eblrelocsimpletype.c \ |
| 47 | ebldynamictagcheck.c eblcorenotetypename.c eblobjnotetypename.c \ |
| 48 | eblcorenote.c eblobjnote.c ebldebugscnp.c \ |
| 49 | eblgotpcreloccheck.c eblcopyrelocp.c eblsectionstripp.c \ |
| 50 | eblelfclass.c eblelfdata.c eblelfmachine.c \ |
| 51 | ebl_check_special_symbol.c eblbsspltp.c eblretval.c \ |
| 52 | eblreginfo.c eblnonerelocp.c eblrelativerelocp.c \ |
| 53 | eblsysvhashentrysize.c eblauxvinfo.c eblcheckobjattr.c \ |
| 54 | ebl_check_special_section.c ebl_syscall_abi.c eblabicfi.c \ |
| 55 | eblstother.c eblinitreg.c ebldwarftoregno.c eblnormalizepc.c \ |
| 56 | eblunwind.c eblresolvesym.c eblcheckreloctargettype.c \ |
| 57 | ebl_data_marker_symbol.c |
| 58 | |
| 59 | libebl_a_SOURCES = $(gen_SOURCES) |
| 60 | |
| 61 | noinst_HEADERS = libeblP.h ebl-hooks.h |
| 62 | |
| 63 | CLEANFILES += $(am_libebl_pic_a_OBJECTS) |