Ensure proc-service symbols have default visibility (PR build/24805)
[deliverable/binutils-gdb.git] / gdbsupport / Makefile.am
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
20 AUTOMAKE_OPTIONS = no-dist foreign
21 ACLOCAL_AMFLAGS = -I . -I ../config
22
23 AM_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
27 override CC := $(CXX)
28 override CFLAGS := $(CXXFLAGS)
29
30 noinst_LIBRARIES = libgdbsupport.a
31
32 if SELFTEST
33 selftest = selftest.c
34 endif
35
36 libgdbsupport_a_SOURCES = \
37 agent.c \
38 btrace-common.c \
39 buffer.c \
40 cleanups.c \
41 common-debug.c \
42 common-exceptions.c \
43 common-inferior.c \
44 common-regcache.c \
45 common-utils.c \
46 environ.c \
47 errors.c \
48 fileio.c \
49 filestuff.c \
50 format.c \
51 gdb-dlfcn.c \
52 gdb_tilde_expand.c \
53 gdb_wait.c \
54 gdb_vecs.c \
55 job-control.c \
56 netstuff.c \
57 new-op.c \
58 pathstuff.c \
59 print-utils.c \
60 ptid.c \
61 rsp-low.c \
62 run-time-clock.c \
63 safe-strerror.c \
64 scoped_mmap.c \
65 signals.c \
66 signals-state-save-restore.c \
67 tdesc.c \
68 thread-pool.c \
69 xml-utils.c \
70 $(selftest)
71
72 # Double-check that no defines are missing from our configury.
73 check-defines:
74 cd $(srcdir) && emacs --script check-defines.el
This page took 0.031619 seconds and 4 git commands to generate.