Blame libdwelf/Makefile.am

Packit Service 97d2fb
## Makefile.am for libdwelf library subdirectory in elfutils.
Packit Service 97d2fb
##
Packit Service 97d2fb
## Process this file with automake to create Makefile.in
Packit Service 97d2fb
##
Packit Service 97d2fb
## Copyright (C) 2014, 2015 Red Hat, Inc.
Packit Service 97d2fb
## This file is part of elfutils.
Packit Service 97d2fb
##
Packit Service 97d2fb
## This file is free software; you can redistribute it and/or modify
Packit Service 97d2fb
## it under the terms of either
Packit Service 97d2fb
##
Packit Service 97d2fb
##   * the GNU Lesser General Public License as published by the Free
Packit Service 97d2fb
##     Software Foundation; either version 3 of the License, or (at
Packit Service 97d2fb
##     your option) any later version
Packit Service 97d2fb
##
Packit Service 97d2fb
## or
Packit Service 97d2fb
##
Packit Service 97d2fb
##   * the GNU General Public License as published by the Free
Packit Service 97d2fb
##     Software Foundation; either version 2 of the License, or (at
Packit Service 97d2fb
##     your option) any later version
Packit Service 97d2fb
##
Packit Service 97d2fb
## or both in parallel, as here.
Packit Service 97d2fb
##
Packit Service 97d2fb
## elfutils is distributed in the hope that it will be useful, but
Packit Service 97d2fb
## WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 97d2fb
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 97d2fb
## General Public License for more details.
Packit Service 97d2fb
##
Packit Service 97d2fb
## You should have received copies of the GNU General Public License and
Packit Service 97d2fb
## the GNU Lesser General Public License along with this program.  If
Packit Service 97d2fb
## not, see <http://www.gnu.org/licenses/>.
Packit Service 97d2fb
##
Packit Service 97d2fb
include $(top_srcdir)/config/eu.am
Packit Service 97d2fb
AM_CPPFLAGS += -I$(srcdir)/../libelf -I$(srcdir)/../libdw \
Packit Service 97d2fb
	       -I$(srcdir)/../libdwfl -I$(srcdir)/../libebl
Packit Service 97d2fb
VERSION = 1
Packit Service 97d2fb
Packit Service 97d2fb
noinst_LIBRARIES = libdwelf.a libdwelf_pic.a
Packit Service 97d2fb
Packit Service 97d2fb
pkginclude_HEADERS = libdwelf.h
Packit Service 97d2fb
noinst_HEADERS = libdwelfP.h
Packit Service 97d2fb
Packit Service 97d2fb
libdwelf_a_SOURCES = dwelf_elf_gnu_debuglink.c dwelf_dwarf_gnu_debugaltlink.c \
Packit Service 97d2fb
		     dwelf_elf_gnu_build_id.c dwelf_scn_gnu_compressed_size.c \
Packit Service 97d2fb
		     dwelf_strtab.c dwelf_elf_begin.c \
Packit Service 97d2fb
		     dwelf_elf_e_machine_string.c
Packit Service 97d2fb
Packit Service 97d2fb
libdwelf = $(libdw)
Packit Service 97d2fb
Packit Service 97d2fb
libdw = ../libdw/libdw.so
Packit Service 97d2fb
libelf = ../libelf/libelf.so
Packit Service 97d2fb
libebl = ../libebl/libebl.a
Packit Service 97d2fb
libeu = ../lib/libeu.a
Packit Service 97d2fb
Packit Service 97d2fb
libdwelf_pic_a_SOURCES =
Packit Service 97d2fb
am_libdwelf_pic_a_OBJECTS = $(libdwelf_a_SOURCES:.c=.os)
Packit Service 97d2fb
Packit Service 97d2fb
CLEANFILES += $(am_libdwelf_pic_a_OBJECTS)