m88k builds. Tweek remote-bug.c to include "serial.h".
[deliverable/binutils-gdb.git] / sim / m68hc11 / Makefile.in
CommitLineData
5f186447 1# Makefile template for Configure for the 68HC11 sim library.
81e09ed8 2# Copyright (C) 1999, 2000, 2001 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
7# the Free Software Foundation; either version 2 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, write to the Free Software
17# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19## COMMON_PRE_CONFIG_FRAG
20
81e09ed8
SC
21M68HC11_OBJS = interp.o m68hc11int.o m68hc12int.o \
22 emulos.o interrupts.o m68hc11_sim.o
5f186447
SC
23
24# List of main object files for `run'.
25SIM_RUN_OBJS = nrun.o
26
27SIM_OBJS = $(M68HC11_OBJS) \
28 $(SIM_NEW_COMMON_OBJS) \
29 sim-load.o \
30 sim-hload.o \
31 sim-engine.o \
32 sim-stop.o \
33 sim-resume.o \
34 sim-hrw.o \
35 sim-reason.o \
36 $(SIM_EXTRA_OBJS)
37
38SIM_PROFILE= -DPROFILE=1 -DWITH_PROFILE=-1
39SIM_EXTRA_CFLAGS = -DWITH_TARGET_WORD_BITSIZE=16 \
40 -DWITH_TARGET_CELL_BITSIZE=32 \
41 -DWITH_TARGET_WORD_MSB=15
42SIM_EXTRA_CLEAN = clean-extra
43
44SIM_EXTRA_OBJS = @m68hc11_extra_objs@
45
46INCLUDE = $(srcdir)/../../include/callback.h \
47 interrupts.h sim-main.h
48
49
50## COMMON_POST_CONFIG_FRAG
51
52m68hc11int.c: gencode
81e09ed8
SC
53 ./gencode -m6811 > $@
54
55m68hc12int.c: gencode
56 ./gencode -m6812 > $@
5f186447
SC
57
58gencode: gencode.c
81e09ed8 59 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.c
5f186447
SC
60
61interp.o: interp.c $(INCLUDE)
62
63clean-extra:
64 rm -f gencode m68hc11int.c
This page took 0.053023 seconds and 4 git commands to generate.