Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / sim / Makefile.am
1 ## Process this file with automake to generate Makefile.in
2 #
3 # Copyright (C) 1993-2022 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 srcroot = $(srcdir)/..
22
23 SUBDIRS = @subdirs@ $(SIM_SUBDIRS)
24
25 SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@
26 AM_MAKEFLAGS = SIM_PRIMARY_TARGET=$(SIM_PRIMARY_TARGET)
27
28 # We don't set some of these vars here, but we need to define them so they may
29 # be used consistently in local.mk files we include below.
30 check_PROGRAMS =
31 noinst_LIBRARIES =
32 EXTRA_PROGRAMS =
33
34 CLEANFILES =
35 DISTCLEANFILES =
36 MOSTLYCLEANFILES = core
37
38 AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS)
39 AM_CPPFLAGS = \
40 -I$(srcroot)/include \
41 $(SIM_INLINE)
42
43 COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(AM_CPPFLAGS) $(CFLAGS_FOR_BUILD)
44 LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@
45
46 # Deps to add to the all-recursive target. These are built before descending
47 # into any subdirs.
48 SIM_ALL_RECURSIVE_DEPS =
49
50 # Generate nltvals.def for newlib/libgloss using devo and build tree.
51 # This file is shipped with distributions so we build in the source dir.
52 # Use `make nltvals' to rebuild.
53 # Note: If gdb releases begin to contain target header files (not a good idea,
54 # but if they did ...), nltvals.def coud be generated at build time.
55 # An alternative is to slurp in the tables at runtime.
56 .PHONY: nltvals
57 nltvals:
58 $(abs_srcdir)/common/gennltvals.py --cpp "$(CPP)" --output nltvals.def --srcroot $(srcroot)
59 $(SHELL) $(srcroot)/move-if-change nltvals.def $(abs_srcdir)/common/nltvals.def
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 all-recursive: $(SIM_ALL_RECURSIVE_DEPS)
This page took 0.031979 seconds and 4 git commands to generate.