1## Process this file with automake to produce Makefile.in.
2#
3#   Copyright (C) 2022 Free Software Foundation, Inc.
4#
5# This file is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; see the file COPYING.  If not see
17# <http://www.gnu.org/licenses/>.
18#
19ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
20
21AUTOMAKE_OPTIONS = dejagnu foreign no-texinfo.tex info-in-builddir subdir-objects
22
23# Variables that we might accumulate conditionally or in subdirs.
24info_TEXINFOS =
25DISTCLEANFILES =
26MAINTAINERCLEANFILES =
27
28INCDIR = $(srcdir)/../include
29# include libctf for swap.h
30AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../libctf
31AM_CFLAGS = @ac_libsframe_warn_cflags@
32
33if INSTALL_LIBBFD
34lib_LTLIBRARIES = libsframe.la
35include_HEADERS = $(INCDIR)/sframe.h $(INCDIR)/sframe-api.h
36else
37include_HEADERS =
38noinst_LTLIBRARIES = libsframe.la
39endif
40
41libsframe_la_SOURCES = sframe.c sframe-dump.c sframe-error.c
42libsframe_la_CPPFLAGS = $(AM_CPPFLAGS)
43
44include doc/local.mk
45
46include testsuite/local.mk
47