|
Packit |
032894 |
## Process this file with automake to create Makefile.in
|
|
Packit |
032894 |
## Configure input file for elfutils.
|
|
Packit |
032894 |
##
|
|
Packit |
032894 |
## Copyright (C) 1996-2006, 2008, 2009, 2015 Red Hat, Inc.
|
|
Packit |
032894 |
##
|
|
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 the GNU General Public License as published by
|
|
Packit |
032894 |
## the Free Software Foundation; either version 3 of the License, or
|
|
Packit |
032894 |
## (at your option) any later version.
|
|
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
|
|
Packit |
032894 |
## GNU General Public License for more details.
|
|
Packit |
032894 |
##
|
|
Packit |
032894 |
## You should have received a copy of the GNU General Public License
|
|
Packit |
032894 |
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
Packit |
032894 |
##
|
|
Packit |
032894 |
ACLOCAL_AMFLAGS = -I m4
|
|
Packit |
032894 |
|
|
Packit |
032894 |
# automake already tells which subdir is being entered.
|
|
Packit |
032894 |
# Don't make make repeat.
|
|
Packit |
032894 |
AM_MAKEFLAGS = --no-print-directory
|
|
Packit |
032894 |
|
|
Packit |
032894 |
pkginclude_HEADERS = version.h
|
|
Packit |
032894 |
|
|
Packit |
032894 |
SUBDIRS = config m4 lib libelf libcpu backends libebl libdwelf libdwfl libdw \
|
|
Packit |
032894 |
libasm src po doc tests
|
|
Packit |
032894 |
|
|
Packit |
032894 |
if DEBUGINFOD
|
|
Packit |
032894 |
SUBDIRS += debuginfod
|
|
Packit |
032894 |
endif
|
|
Packit |
032894 |
|
|
Packit |
032894 |
EXTRA_DIST = elfutils.spec GPG-KEY NOTES CONTRIBUTING \
|
|
Packit |
032894 |
COPYING COPYING-GPLV2 COPYING-LGPLV3
|
|
Packit |
032894 |
|
|
Packit |
032894 |
# Make sure the test install uses lib64 when $LIB will yield lib64.
|
|
Packit |
032894 |
# Make sure the test build uses the same compiler, which on e.g. ppc64
|
|
Packit |
032894 |
# determines which platform we are actually testing.
|
|
Packit |
032894 |
# Run all tests under valgrind.
|
|
Packit |
032894 |
AM_DISTCHECK_CONFIGURE_FLAGS = \
|
|
Packit |
032894 |
--libdir=`echo $(libdir) | sed "s,^$(exec_prefix),$$dc_install_base,"`\
|
|
Packit |
032894 |
--enable-valgrind --enable-sanitize-undefined \
|
|
Packit |
032894 |
CC="$(CC)"
|
|
Packit |
032894 |
|
|
Packit |
032894 |
distcheck-hook:
|
|
Packit |
032894 |
chmod -R u+w $(distdir)
|
|
Packit |
032894 |
|
|
Packit |
032894 |
rpm: dist
|
|
Packit |
032894 |
rpmbuild -ts --sign elfutils-@PACKAGE_VERSION@.tar.bz2
|
|
Packit |
032894 |
|
|
Packit |
032894 |
# Tell version 3.79 and up of GNU make to not build goals in this
|
|
Packit |
032894 |
# directory in parallel.
|
|
Packit |
032894 |
.NOTPARALLEL:
|