Blame lib/Makefile.am

Packit Service 97d2fb
## Process this file with automake to create Makefile.in
Packit Service 97d2fb
##
Packit Service 97d2fb
## Copyright (C) 1996-2011 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_CFLAGS += $(fpic_CFLAGS)
Packit Service 97d2fb
AM_CPPFLAGS += -I$(srcdir)/../libelf
Packit Service 97d2fb
Packit Service 97d2fb
noinst_LIBRARIES = libeu.a
Packit Service 97d2fb
Packit Service 97d2fb
libeu_a_SOURCES = xstrdup.c xstrndup.c xmalloc.c next_prime.c \
Packit Service 97d2fb
		  crc32.c crc32_file.c \
Packit Service 97d2fb
		  color.c printversion.c
Packit Service 97d2fb
Packit Service 97d2fb
noinst_HEADERS = fixedsizehash.h libeu.h system.h dynamicsizehash.h list.h \
Packit Service 97d2fb
		 eu-config.h color.h printversion.h bpf.h \
Packit Service 97d2fb
		 atomics.h stdatomic-fbsd.h dynamicsizehash_concurrent.h
Packit Service 97d2fb
EXTRA_DIST = dynamicsizehash.c dynamicsizehash_concurrent.c
Packit Service 97d2fb
Packit Service 97d2fb
if !GPROF
Packit Service 97d2fb
xmalloc_CFLAGS = -ffunction-sections
Packit Service 97d2fb
endif