Re-generate gdb/gdbserver/gdbsupport configure scripts
[deliverable/binutils-gdb.git] / gdbsupport / Makefile.am
CommitLineData
01027315
TT
1## Process this file with automake to generate Makefile.in
2#
3# Copyright (C) 2020 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 3 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 COPYING3. If not see
17# <http://www.gnu.org/licenses/>.
18#
19
20AUTOMAKE_OPTIONS = no-dist foreign
21ACLOCAL_AMFLAGS = -I . -I ../config
22
23AM_CPPFLAGS = -I$(srcdir)/../include -I$(srcdir)/../gdb \
24 -I../gnulib/import -I$(srcdir)/../gnulib/import \
25 -I.. -I$(srcdir)/.. $(INCINTL) -I../bfd -I$(srcdir)/../bfd
26
67b10306
PA
27override CXX += $(CXX_DIALECT)
28
01027315
TT
29override CC := $(CXX)
30override CFLAGS := $(CXXFLAGS)
31
629c2962
SM
32AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
33
01027315
TT
34noinst_LIBRARIES = libgdbsupport.a
35
36if SELFTEST
37selftest = selftest.c
38endif
39
40libgdbsupport_a_SOURCES = \
41 agent.c \
42 btrace-common.c \
43 buffer.c \
44 cleanups.c \
45 common-debug.c \
46 common-exceptions.c \
47 common-inferior.c \
48 common-regcache.c \
49 common-utils.c \
50 environ.c \
51 errors.c \
52 fileio.c \
53 filestuff.c \
54 format.c \
55 gdb-dlfcn.c \
56 gdb_tilde_expand.c \
57 gdb_wait.c \
58 gdb_vecs.c \
59 job-control.c \
60 netstuff.c \
61 new-op.c \
62 pathstuff.c \
63 print-utils.c \
64 ptid.c \
65 rsp-low.c \
66 run-time-clock.c \
67 safe-strerror.c \
68 scoped_mmap.c \
69 signals.c \
70 signals-state-save-restore.c \
71 tdesc.c \
72 thread-pool.c \
73 xml-utils.c \
74 $(selftest)
0454ef42
TT
75
76# Double-check that no defines are missing from our configury.
77check-defines:
78 cd $(srcdir) && emacs --script check-defines.el
This page took 0.074033 seconds and 4 git commands to generate.