blob: cd4b7ddf53f54a824b86220d02d1d15d89c4601f [file] [log] [blame]
Elliott Hughes03333822015-02-18 22:19:45 -08001## Makefile.am for libdwelf library subdirectory in elfutils.
2##
3## Process this file with automake to create Makefile.in
4##
5## Copyright (C) 2014 Red Hat, Inc.
6## This file is part of elfutils.
7##
8## This file is free software; you can redistribute it and/or modify
9## it under the terms of either
10##
11## * the GNU Lesser General Public License as published by the Free
12## Software Foundation; either version 3 of the License, or (at
13## your option) any later version
14##
15## or
16##
17## * the GNU General Public License as published by the Free
18## Software Foundation; either version 2 of the License, or (at
19## your option) any later version
20##
21## or both in parallel, as here.
22##
23## elfutils is distributed in the hope that it will be useful, but
24## WITHOUT ANY WARRANTY; without even the implied warranty of
25## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26## General Public License for more details.
27##
28## You should have received copies of the GNU General Public License and
29## the GNU Lesser General Public License along with this program. If
30## not, see <http://www.gnu.org/licenses/>.
31##
32include $(top_srcdir)/config/eu.am
33AM_CPPFLAGS += -I$(srcdir)/../libelf -I$(srcdir)/../libdw \
34 -I$(srcdir)/../libdwfl -I$(srcdir)/../libebl
35VERSION = 1
36
37noinst_LIBRARIES = libdwelf.a libdwelf_pic.a
38
39pkginclude_HEADERS = libdwelf.h
40noinst_HEADERS = libdwelfP.h
41
42libdwelf_a_SOURCES = dwelf_elf_gnu_debuglink.c dwelf_dwarf_gnu_debugaltlink.c \
43 dwelf_elf_gnu_build_id.c
44
45libdwelf = $(libdw)
46
47libdw = ../libdw/libdw.so
48libelf = ../libelf/libelf.so
49libebl = ../libebl/libebl.a
50libeu = ../lib/libeu.a
51
52libdwelf_pic_a_SOURCES =
53am_libdwelf_pic_a_OBJECTS = $(libdwelf_a_SOURCES:.c=.os)
54
55CLEANFILES += $(am_libdwelf_pic_a_OBJECTS)