Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / sim / common / local.mk
CommitLineData
5bea0c32
MF
1## See sim/Makefile.am.
2#
88b9d363 3# Copyright (C) 1997-2022 Free Software Foundation, Inc.
5bea0c32
MF
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# Parts of the common/ sim code that have been unified.
19# Most still lives in common/Make-common.in.
20
21AM_CPPFLAGS += -I$(srcdir)/%D%
22
23# This makes sure common parts are available before building the arch-subdirs
24# which will refer to these.
25SIM_ALL_RECURSIVE_DEPS += \
26 %D%/libcommon.a
27
28# NB: libcommon.a isn't used directly by ports. We need a target for common
29# objects to be a part of, and ports use the individual objects directly.
30noinst_LIBRARIES += %D%/libcommon.a
dd8e16ea
MF
31%C%_libcommon_a_CPPFLAGS = \
32 $(AM_CPPFLAGS) \
33 -DSIM_COMMON_BUILD \
34 -I../bfd \
35 -I..
5bea0c32 36%C%_libcommon_a_SOURCES = \
ad9cc209 37 %D%/portability.c \
dd8e16ea 38 %D%/sim-load.c \
5bea0c32
MF
39 %D%/version.c
40
015f7b74
MF
41%D%/version.c: %D%/version.c-stamp ; @true
42%D%/version.c-stamp: $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcdir)/%D%/create-version.sh
fbe8d1cf 43 $(AM_V_GEN)$(SHELL) $(srcdir)/%D%/create-version.sh $(srcroot)/gdb $@.tmp
015f7b74 44 $(AM_V_at)$(SHELL) $(srcroot)/move-if-change $@.tmp $(@:-stamp=)
fbe8d1cf 45 $(AM_V_at)touch $@
015f7b74
MF
46
47CLEANFILES += \
48 %D%/version.c %D%/version.c-stamp
This page took 0.032335 seconds and 4 git commands to generate.