sim: sh: fix various parentheses warnings
[binutils-gdb.git] / sim / Makefile.am
1 ## Process this file with automake to generate Makefile.in
2 #
3 # Copyright (C) 1993-2021 Free Software Foundation, Inc.
4 #
5 # This program 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. If not, see <http://www.gnu.org/licenses/>.
17
18 AUTOMAKE_OPTIONS = dejagnu foreign no-dist subdir-objects
19 ACLOCAL_AMFLAGS = -Im4 -I.. -I../config
20
21 srccom = $(srcdir)/common
22 srcroot = $(srcdir)/..
23
24 SUBDIRS = @subdirs@ $(SIM_SUBDIRS)
25
26 SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@
27 AM_MAKEFLAGS = SIM_PRIMARY_TARGET=$(SIM_PRIMARY_TARGET)
28
29 # We don't set some of these vars here, but we need to define them so they may
30 # be used consistently in local.mk files we include below.
31 check_PROGRAMS =
32 noinst_LIBRARIES =
33 EXTRA_PROGRAMS =
34
35 CLEANFILES =
36 DISTCLEANFILES =
37 MOSTLYCLEANFILES = core
38
39 AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS)
40 AM_CPPFLAGS = \
41 -I$(srcroot)/include \
42 $(SIM_INLINE)
43
44 COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(AM_CPPFLAGS) $(CFLAGS_FOR_BUILD)
45 LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@
46
47 # Deps to add to the all-recursive target. These are built before descending
48 # into any subdirs.
49 SIM_ALL_RECURSIVE_DEPS =
50
51 # Generate nltvals.def for newlib/libgloss using devo and build tree.
52 # This file is shipped with distributions so we build in the source dir.
53 # Use `make nltvals' to rebuild.
54 # Note: If gdb releases begin to contain target header files (not a good idea,
55 # but if they did ...), nltvals.def coud be generated at build time.
56 # An alternative is to slurp in the tables at runtime.
57 .PHONY: nltvals
58 nltvals:
59 $(srccom)/gennltvals.py --cpp "$(CPP)"
60
61 pkginclude_HEADERS = \
62 $(srcroot)/include/sim/callback.h \
63 $(srcroot)/include/sim/sim.h
64
65 include common/local.mk
66 if SIM_ENABLE_IGEN
67 include igen/local.mk
68 endif
69 include testsuite/local.mk
70
71 if SIM_ENABLE_ARCH_bpf
72 include bpf/local.mk
73 endif
74 if SIM_ENABLE_ARCH_cr16
75 include cr16/local.mk
76 endif
77 if SIM_ENABLE_ARCH_cris
78 include cris/local.mk
79 endif
80 if SIM_ENABLE_ARCH_d10v
81 include d10v/local.mk
82 endif
83 if SIM_ENABLE_ARCH_frv
84 include frv/local.mk
85 endif
86 if SIM_ENABLE_ARCH_iq2000
87 include iq2000/local.mk
88 endif
89 if SIM_ENABLE_ARCH_lm32
90 include lm32/local.mk
91 endif
92 if SIM_ENABLE_ARCH_m32c
93 include m32c/local.mk
94 endif
95 if SIM_ENABLE_ARCH_m32r
96 include m32r/local.mk
97 endif
98 if SIM_ENABLE_ARCH_m68hc11
99 include m68hc11/local.mk
100 endif
101 if SIM_ENABLE_ARCH_mn10300
102 include mn10300/local.mk
103 endif
104 if SIM_ENABLE_ARCH_or1k
105 include or1k/local.mk
106 endif
107 if SIM_ENABLE_ARCH_sh
108 include sh/local.mk
109 endif
110 if SIM_ENABLE_ARCH_v850
111 include v850/local.mk
112 endif
113
114 all-recursive: $(SIM_ALL_RECURSIVE_DEPS)