]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/m68hc11/Makefile.in
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / sim / m68hc11 / Makefile.in
CommitLineData
5f186447 1# Makefile template for Configure for the 68HC11 sim library.
8acc9f48 2# Copyright (C) 1999-2013 Free Software Foundation, Inc.
5f186447
SC
3# Written by Cygnus Support.
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
4744ac1b 7# the Free Software Foundation; either version 3 of the License, or
5f186447 8# (at your option) any later version.
4744ac1b 9#
5f186447
SC
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.
4744ac1b 14#
5f186447 15# You should have received a copy of the GNU General Public License
4744ac1b 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
5f186447
SC
17
18## COMMON_PRE_CONFIG_FRAG
19
81e09ed8
SC
20M68HC11_OBJS = interp.o m68hc11int.o m68hc12int.o \
21 emulos.o interrupts.o m68hc11_sim.o
5f186447
SC
22
23# List of main object files for `run'.
24SIM_RUN_OBJS = nrun.o
25
26SIM_OBJS = $(M68HC11_OBJS) \
27 $(SIM_NEW_COMMON_OBJS) \
28 sim-load.o \
29 sim-hload.o \
30 sim-engine.o \
31 sim-stop.o \
5f186447
SC
32 sim-hrw.o \
33 sim-reason.o \
34 $(SIM_EXTRA_OBJS)
35
36SIM_PROFILE= -DPROFILE=1 -DWITH_PROFILE=-1
9b9f7b3c
SC
37# We must use 32-bit addresses to support memory bank switching.
38# The WORD_BITSIZE is normally 16 but must be switched (temporarily)
39# to 32 to avoid a bug in the sim-common which uses 'unsigned_word'
40# instead of 'address_word' in some places (the result is a truncation
41# of the 32-bit address to 16-bit; and this breaks the simulator).
42SIM_EXTRA_CFLAGS = -DWITH_TARGET_WORD_BITSIZE=32 \
5f186447 43 -DWITH_TARGET_CELL_BITSIZE=32 \
9b9f7b3c
SC
44 -DWITH_TARGET_ADDRESS_BITSIZE=32 \
45 -DWITH_TARGET_WORD_MSB=31
5f186447
SC
46SIM_EXTRA_CLEAN = clean-extra
47
48SIM_EXTRA_OBJS = @m68hc11_extra_objs@
49
3c25f8c7 50INCLUDE = $(srcdir)/../../include/gdb/callback.h \
5f186447
SC
51 interrupts.h sim-main.h
52
53
54## COMMON_POST_CONFIG_FRAG
55
56m68hc11int.c: gencode
81e09ed8
SC
57 ./gencode -m6811 > $@
58
59m68hc12int.c: gencode
60 ./gencode -m6812 > $@
5f186447
SC
61
62gencode: gencode.c
b51c7603 63 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode $(srcdir)/gencode.c
5f186447
SC
64
65interp.o: interp.c $(INCLUDE)
66
67clean-extra:
68 rm -f gencode m68hc11int.c