2021-01-17 19:17:36 +08:00
|
|
|
## Process this file with automake to generate Makefile.in
|
2021-12-09 14:40:28 +08:00
|
|
|
##
|
2022-01-01 22:56:03 +08:00
|
|
|
# Copyright (C) 1993-2022 Free Software Foundation, Inc.
|
2021-01-17 19:17:36 +08:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2021-01-18 00:13:37 +08:00
|
|
|
AUTOMAKE_OPTIONS = dejagnu foreign no-dist subdir-objects
|
2021-01-18 03:45:25 +08:00
|
|
|
ACLOCAL_AMFLAGS = -Im4 -I.. -I../config
|
2021-01-17 19:17:36 +08:00
|
|
|
|
2021-10-31 15:29:36 +08:00
|
|
|
srccom = $(srcdir)/common
|
2021-01-17 19:17:36 +08:00
|
|
|
srcroot = $(srcdir)/..
|
|
|
|
|
2021-06-20 09:33:30 +08:00
|
|
|
SUBDIRS = @subdirs@ $(SIM_SUBDIRS)
|
2021-01-17 19:17:36 +08:00
|
|
|
|
2021-01-16 15:27:38 +08:00
|
|
|
SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@
|
|
|
|
AM_MAKEFLAGS = SIM_PRIMARY_TARGET=$(SIM_PRIMARY_TARGET)
|
|
|
|
|
2021-12-09 14:40:28 +08:00
|
|
|
## We don't set some of these vars here, but we need to define them so they may
|
|
|
|
## be used consistently in local.mk files we include below.
|
2021-11-19 08:10:28 +08:00
|
|
|
pkginclude_HEADERS =
|
2021-03-14 09:54:49 +08:00
|
|
|
check_PROGRAMS =
|
2021-02-22 12:35:46 +08:00
|
|
|
noinst_LIBRARIES =
|
|
|
|
EXTRA_PROGRAMS =
|
|
|
|
|
2021-03-14 09:54:49 +08:00
|
|
|
CLEANFILES =
|
|
|
|
DISTCLEANFILES =
|
2021-01-17 19:17:36 +08:00
|
|
|
MOSTLYCLEANFILES = core
|
|
|
|
|
2021-06-18 13:14:39 +08:00
|
|
|
AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS)
|
2021-06-16 10:45:07 +08:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(srcroot)/include \
|
|
|
|
$(SIM_INLINE)
|
2021-05-04 22:45:46 +08:00
|
|
|
|
2021-01-18 03:45:25 +08:00
|
|
|
COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(AM_CPPFLAGS) $(CFLAGS_FOR_BUILD)
|
|
|
|
LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@
|
|
|
|
|
2021-12-09 14:40:28 +08:00
|
|
|
## Deps to add to the all-recursive target. These are built before descending
|
|
|
|
## into any subdirs.
|
2021-05-14 16:39:39 +08:00
|
|
|
SIM_ALL_RECURSIVE_DEPS =
|
|
|
|
|
2021-11-01 13:31:44 +08:00
|
|
|
# Generate target constants for newlib/libgloss from its source tree.
|
2021-01-17 19:17:36 +08:00
|
|
|
# This file is shipped with distributions so we build in the source dir.
|
|
|
|
# Use `make nltvals' to rebuild.
|
|
|
|
.PHONY: nltvals
|
|
|
|
nltvals:
|
2021-10-31 15:29:36 +08:00
|
|
|
$(srccom)/gennltvals.py --cpp "$(CPP)"
|
2021-01-18 00:13:37 +08:00
|
|
|
|
2021-11-19 08:10:28 +08:00
|
|
|
if ENABLE_SIM
|
|
|
|
pkginclude_HEADERS += \
|
2021-05-14 13:57:06 +08:00
|
|
|
$(srcroot)/include/sim/callback.h \
|
|
|
|
$(srcroot)/include/sim/sim.h
|
2021-11-19 08:10:28 +08:00
|
|
|
endif
|
2021-05-14 13:57:06 +08:00
|
|
|
|
2021-05-14 16:39:39 +08:00
|
|
|
include common/local.mk
|
2021-02-22 12:35:46 +08:00
|
|
|
if SIM_ENABLE_IGEN
|
|
|
|
include igen/local.mk
|
|
|
|
endif
|
2021-01-18 00:13:37 +08:00
|
|
|
include testsuite/local.mk
|
2021-05-14 16:39:39 +08:00
|
|
|
|
2021-11-19 08:32:31 +08:00
|
|
|
if SIM_ENABLE_ARCH_arm
|
|
|
|
include arm/local.mk
|
|
|
|
endif
|
2021-10-31 15:29:36 +08:00
|
|
|
if SIM_ENABLE_ARCH_bpf
|
|
|
|
include bpf/local.mk
|
|
|
|
endif
|
2021-10-31 14:08:38 +08:00
|
|
|
if SIM_ENABLE_ARCH_cr16
|
|
|
|
include cr16/local.mk
|
|
|
|
endif
|
2021-10-31 15:29:36 +08:00
|
|
|
if SIM_ENABLE_ARCH_cris
|
|
|
|
include cris/local.mk
|
|
|
|
endif
|
2021-10-31 14:08:38 +08:00
|
|
|
if SIM_ENABLE_ARCH_d10v
|
|
|
|
include d10v/local.mk
|
|
|
|
endif
|
2021-11-19 08:32:31 +08:00
|
|
|
if SIM_ENABLE_ARCH_erc32
|
|
|
|
include erc32/local.mk
|
|
|
|
endif
|
2021-10-31 15:29:36 +08:00
|
|
|
if SIM_ENABLE_ARCH_frv
|
|
|
|
include frv/local.mk
|
|
|
|
endif
|
|
|
|
if SIM_ENABLE_ARCH_iq2000
|
|
|
|
include iq2000/local.mk
|
|
|
|
endif
|
|
|
|
if SIM_ENABLE_ARCH_lm32
|
|
|
|
include lm32/local.mk
|
|
|
|
endif
|
2021-10-31 14:08:38 +08:00
|
|
|
if SIM_ENABLE_ARCH_m32c
|
|
|
|
include m32c/local.mk
|
|
|
|
endif
|
2021-10-31 15:29:36 +08:00
|
|
|
if SIM_ENABLE_ARCH_m32r
|
|
|
|
include m32r/local.mk
|
|
|
|
endif
|
2021-10-31 14:08:38 +08:00
|
|
|
if SIM_ENABLE_ARCH_m68hc11
|
|
|
|
include m68hc11/local.mk
|
|
|
|
endif
|
2021-10-31 14:47:13 +08:00
|
|
|
if SIM_ENABLE_ARCH_mn10300
|
|
|
|
include mn10300/local.mk
|
|
|
|
endif
|
2021-12-05 02:35:25 +08:00
|
|
|
if SIM_ENABLE_ARCH_moxie
|
|
|
|
include moxie/local.mk
|
|
|
|
endif
|
2021-10-31 15:29:36 +08:00
|
|
|
if SIM_ENABLE_ARCH_or1k
|
|
|
|
include or1k/local.mk
|
|
|
|
endif
|
2021-11-19 08:32:31 +08:00
|
|
|
if SIM_ENABLE_ARCH_ppc
|
|
|
|
include ppc/local.mk
|
|
|
|
endif
|
|
|
|
if SIM_ENABLE_ARCH_rx
|
|
|
|
include rx/local.mk
|
|
|
|
endif
|
2021-10-31 14:08:38 +08:00
|
|
|
if SIM_ENABLE_ARCH_sh
|
|
|
|
include sh/local.mk
|
|
|
|
endif
|
2021-10-31 14:47:13 +08:00
|
|
|
if SIM_ENABLE_ARCH_v850
|
|
|
|
include v850/local.mk
|
|
|
|
endif
|
2021-10-31 14:08:38 +08:00
|
|
|
|
2021-05-14 16:39:39 +08:00
|
|
|
all-recursive: $(SIM_ALL_RECURSIVE_DEPS)
|