sim: sim-stop/sim-reason/sim-reg: move to common obj list
[deliverable/binutils-gdb.git] / sim / iq2000 / Makefile.in
CommitLineData
edece237 1# Makefile template for Configure for the IQ2000 simulator
32d0add0 2# Copyright (C) 1998-2015 Free Software Foundation, Inc.
edece237
CV
3# Contributed 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
edece237
CV
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#
4744ac1b
JB
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/>.
edece237
CV
17
18## COMMON_PRE_CONFIG_FRAG
19
20IQ2000_OBJS = iq2000.o cpu.o decode.o sem.o model.o mloop.o
21
edece237
CV
22SIM_OBJS = \
23 $(SIM_NEW_COMMON_OBJS) \
edece237 24 sim-hload.o \
edece237 25 sim-model.o \
edece237 26 cgen-utils.o cgen-trace.o cgen-scache.o \
797eee42 27 cgen-run.o \
edece237 28 sim-if.o arch.o \
66b0e85d 29 $(IQ2000_OBJS)
edece237
CV
30
31# Extra headers included by sim-main.h.
32SIM_EXTRA_DEPS = \
33 $(CGEN_INCLUDE_DEPS) \
34 arch.h cpuall.h iq2000-sim.h $(srcdir)/../../opcodes/iq2000-desc.h
35
36SIM_EXTRA_CFLAGS =
37
38ALL_CPU_CFLAGS = -DHAVE_CPU_IQ2000BF -DHAVE_CPU_IQ10BF
39
edece237
CV
40SIM_EXTRA_CLEAN = iq2000-clean
41
42## COMMON_POST_CONFIG_FRAG
43
44arch = iq2000
45
46sim-if.o: $(srcdir)/sim-if.c $(SIM_MAIN_DEPS) $(srcdir)/../common/sim-core.h
47
48arch.o: arch.c $(SIM_MAIN_DEPS)
49 $(CC) -c $(srcdir)/arch.c $(ALL_CFLAGS) -UHAVE_CPU_IQ10BF
50
51devices.o: $(srcdir)/devices.c $(SIM_MAIN_DEPS)
52
53# IQ2000 objs
54
55IQ2000BF_INCLUDE_DEPS = \
56 $(CGEN_MAIN_CPU_DEPS) \
57 cpu.h decode.h eng.h
58
59iq2000.o: $(srcdir)/iq2000.c $(IQ2000BF_INCLUDE_DEPS)
60
61# FIXME: Use of `mono' is wip.
62mloop.c eng.h: stamp-mloop
63stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile
086c6838 64 $(SHELL) $(srccom)/genmloop.sh -shell $(SHELL) \
edece237
CV
65 -mono -fast -pbb -switch sem-switch.c \
66 -cpu iq2000bf -infile $(srcdir)/mloop.in
67 $(SHELL) $(srcroot)/move-if-change eng.hin eng.h
68 $(SHELL) $(srcroot)/move-if-change mloop.cin mloop.c
69 touch stamp-mloop
70mloop.o: mloop.c $(srcdir)/sem-switch.c $(IQ2000BF_INCLUDE_DEPS)
71
72cpu.o: $(srcdir)/cpu.c $(IQ2000BF_INCLUDE_DEPS)
73decode.o: $(srcdir)/decode.c $(IQ2000BF_INCLUDE_DEPS)
74sem.o: $(srcdir)/sem.c $(IQ2000BF_INCLUDE_DEPS)
75model.o: $(srcdir)/model.c $(IQ2000BF_INCLUDE_DEPS)
76
77iq2000-clean:
78 rm -f mloop.c eng.h stamp-mloop
79 rm -f tmp-*
80 rm -f stamp-arch stamp-cpu
81
82# cgen support, enable with --enable-cgen-maint
83CGEN_MAINT = ; @true
84# The following line is commented in or out depending upon --enable-cgen-maint.
85@CGEN_MAINT@CGEN_MAINT =
86
6a8b8615 87stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(CPU_DIR)/iq2000.cpu Makefile
edece237 88 $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=iq2000 \
6a8b8615 89 archfile=$(CPU_DIR)/iq2000.cpu \
edece237
CV
90 FLAGS="with-scache with-profile=fn"
91 touch stamp-arch
92arch.h arch.c cpuall.h: $(CGEN_MAINT) stamp-arch
93 @true
94
6a8b8615 95stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(CPU_DIR)/iq2000.cpu Makefile
edece237 96 $(MAKE) cgen-cpu-decode $(CGEN_FLAGS_TO_PASS) \
8065377a 97 cpu=iq2000bf mach=iq2000 \
6a8b8615 98 archfile=$(CPU_DIR)/iq2000.cpu \
8065377a
DE
99 FLAGS="with-scache with-profile=fn" \
100 EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)"
edece237
CV
101 touch stamp-cpu
102cpu.h sem.c sem-switch.c model.c decode.c decode.h: $(CGEN_MAINT) stamp-cpu
103 @true
This page took 0.464823 seconds and 4 git commands to generate.