sim: make nrun the default run program
[deliverable/binutils-gdb.git] / sim / sh64 / Makefile.in
1 # Makefile template for Configure for the SH64 simulator
2 # Copyright (C) 2000-2015 Free Software Foundation, Inc.
3 # Contributed by Red Hat, Inc.
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 ## COMMON_PRE_CONFIG_FRAG
19
20 SH64_OBJS = sh64.o cpu.o sh-desc.o \
21 decode-compact.o sem-compact.o mloop-compact.o \
22 decode-media.o sem-media.o mloop-media.o
23
24 CONFIG_DEVICES = dv-sockser.o
25 CONFIG_DEVICES =
26
27 SIM_OBJS = \
28 $(SIM_NEW_COMMON_OBJS) \
29 sim-cpu.o \
30 sim-hload.o \
31 sim-hrw.o \
32 sim-model.o \
33 sim-reg.o \
34 cgen-utils.o cgen-trace.o cgen-scache.o \
35 cgen-run.o sim-reason.o sim-engine.o sim-stop.o \
36 sim-if.o arch.o \
37 $(SH64_OBJS) \
38 $(CONFIG_DEVICES)
39
40 # Extra headers included by sim-main.h.
41 SIM_EXTRA_DEPS = \
42 $(CGEN_INCLUDE_DEPS) \
43 arch.h cpuall.h sh64-sim.h sh-desc.h sh-opc.h
44
45 SIM_EXTRA_CFLAGS =
46
47 SIM_EXTRA_CLEAN = sh64-clean
48
49 ## COMMON_POST_CONFIG_FRAG
50
51 arch = sh
52
53 sim-if.o: sim-if.c $(SIM_MAIN_DEPS) $(srcdir)/../common/sim-core.h
54
55 arch.o: arch.c $(SIM_MAIN_DEPS)
56
57 sh-desc.o: sh-desc.c $(SIM_MAIN_DEPS)
58
59 devices.o: devices.c $(SIM_MAIN_DEPS)
60
61 # SH64 objs
62
63 SH64_INCLUDE_DEPS = \
64 $(CGEN_MAIN_CPU_DEPS) \
65 cpu.h decode.h \
66 decode-compact.h eng-compact.h defs-compact.h \
67 decode-media.h eng-media.h defs-media.h
68
69 sh64.o: sh64.c $(SH64_INCLUDE_DEPS)
70
71 mloop-compact.o: mloop-compact.c sem-compact-switch.c $(SH64_INCLUDE_DEPS)
72 $(CC) -c $(srcdir)/mloop-compact.c $(ALL_CFLAGS) -DWANT_ISA_COMPACT
73
74 mloop-media.o: mloop-media.c sem-media-switch.c $(SH64_INCLUDE_DEPS)
75 $(CC) -c $(srcdir)/mloop-media.c $(ALL_CFLAGS) -DWANT_ISA_MEDIA
76
77 cpu.o: $(srcdir)/cpu.c $(SH64_INCLUDE_DEPS)
78
79 decode-compact.o: decode-compact.c $(SH64_INCLUDE_DEPS)
80 $(CC) -c $(srcdir)/decode-compact.c $(ALL_CFLAGS) -DWANT_ISA_COMPACT
81
82 sem-compact.o: sem-compact.c $(SH64_INCLUDE_DEPS)
83 $(CC) -c $(srcdir)/sem-compact.c $(ALL_CFLAGS) -DWANT_ISA_COMPACT
84
85 decode-media.o: decode-media.c $(SH64_INCLUDE_DEPS)
86 $(CC) -c $(srcdir)/decode-media.c $(ALL_CFLAGS) -DWANT_ISA_MEDIA
87
88 sem-media.o: sem-media.c $(SH64_INCLUDE_DEPS)
89 $(CC) -c $(srcdir)/sem-media.c $(ALL_CFLAGS) -DWANT_ISA_MEDIA
90
91 sh64-clean:
92 rm -f tmp-*
93 rm -f stamp-defs-{compact,media}
94 rm -f stamp-arch stamp-desc stamp-cpu stamp-decode-{compact,media}
95
96 # cgen support, enable with --enable-cgen-maint
97 CGEN_MAINT = ; @true
98 # The following line is commented in or out depending upon --enable-cgen-maint.
99 @CGEN_MAINT@CGEN_MAINT =
100
101 # Utility rules for humans.
102 .PHONY: stamp-all stamp-decode stamp-defs
103 stamp-all: stamp-arch stamp-desc stamp-cpu stamp-decode stamp-defs
104 stamp-decode: stamp-decode-compact stamp-decode-media
105 stamp-defs: stamp-defs-compact stamp-defs-media
106
107 # NOTE: Generated source files are specified as full paths,
108 # e.g. $(srcdir)/arch.c, because make may decide the files live
109 # in objdir otherwise.
110
111 stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(CGEN_CPU_DIR)/sh.cpu $(CGEN_CPU_DIR)/sh.opc $(CGEN_CPU_DIR)/sh64-media.cpu $(CGEN_CPU_DIR)/sh64-compact.cpu $(CGEN_CPU_DIR)/sh-sim.cpu Makefile
112 $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=all isa=compact,media archfile=$(CGEN_CPU_DIR)/sh.cpu \
113 FLAGS="with-scache"
114 touch $@
115 $(srcdir)/arch.h $(srcdir)/arch.c $(srcdir)/cpuall.h: $(CGEN_MAINT) stamp-arch
116 @true
117
118 stamp-desc: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_CPU_DIR)/sh.cpu $(CGEN_CPU_DIR)/sh.opc $(CGEN_CPU_DIR)/sh64-compact.cpu $(CGEN_CPU_DIR)/sh64-media.cpu $(CGEN_CPU_DIR)/sh-sim.cpu Makefile
119 $(MAKE) cgen-desc $(CGEN_FLAGS_TO_PASS) cpu=sh64 mach=all isa=compact,media archfile=$(CGEN_CPU_DIR)/sh.cpu
120 touch $@
121 $(srcdir)/sh-desc.h $(srcdir)/sh-desc.c $(srcdir)/sh-opc.h: $(CGEN_MAINT) stamp-desc
122 @true
123
124 stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_CPU_DIR)/sh.cpu $(CGEN_CPU_DIR)/sh.opc $(CGEN_CPU_DIR)/sh64-compact.cpu $(CGEN_CPU_DIR)/sh64-media.cpu $(CGEN_CPU_DIR)/sh-sim.cpu Makefile
125 $(MAKE) cgen-cpu $(CGEN_FLAGS_TO_PASS) \
126 cpu=sh64 mach=sh4,sh5 isa=compact,media FLAGS="with-multiple-isa with-scache" archfile=$(CGEN_CPU_DIR)/sh.cpu
127 rm -f $(srcdir)/model.c
128 touch $@
129 $(srcdir)/cpu.h $(srcdir)/cpu.c: $(CGEN_MAINT) stamp-cpu
130 @true
131
132 stamp-defs-compact: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_CPU_DIR)/sh.cpu $(CGEN_CPU_DIR)/sh.opc $(CGEN_CPU_DIR)/sh64-compact.cpu $(CGEN_CPU_DIR)/sh-sim.cpu Makefile
133 $(MAKE) cgen-defs $(CGEN_FLAGS_TO_PASS) \
134 cpu=sh64 mach=sh5 isa=compact FLAGS="with-scache" SUFFIX="-compact" archfile=$(CGEN_CPU_DIR)/sh.cpu
135 touch $@
136 $(srcdir)/defs-compact.h: $(CGEN_MAINT) stamp-defs-compact
137 @true
138
139 stamp-defs-media: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_CPU_DIR)/sh.cpu $(CGEN_CPU_DIR)/sh.opc $(CGEN_CPU_DIR)/sh64-media.cpu $(CGEN_CPU_DIR)/sh-sim.cpu Makefile
140 $(MAKE) cgen-defs $(CGEN_FLAGS_TO_PASS) \
141 cpu=sh64 mach=sh5 isa=media FLAGS="with-scache" SUFFIX="-media" archfile=$(CGEN_CPU_DIR)/sh.cpu
142 touch $@
143 $(srcdir)/defs-media.h: $(CGEN_MAINT) stamp-defs-media
144
145 stamp-decode-compact: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(CGEN_CPU_DIR)/sh.cpu $(CGEN_CPU_DIR)/sh.opc $(CGEN_CPU_DIR)/sh64-compact.cpu $(CGEN_CPU_DIR)/sh-sim.cpu Makefile
146 $(MAKE) cgen-decode $(CGEN_FLAGS_TO_PASS) \
147 cpu=sh64 mach=sh5 isa=compact FLAGS="with-scache" SUFFIX="-compact" EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)" \
148 archfile=$(CGEN_CPU_DIR)/sh.cpu
149 touch $@
150 $(srcdir)/sem-compact.c $(srcdir)/sem-compact-switch.c $(srcdir)/decode-compact.c $(srcdir)/decode-compact.h: $(CGEN_MAINT) stamp-decode-compact
151 @true
152
153 stamp-decode-media: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(CGEN_CPU_DIR)/sh.cpu $(CGEN_CPU_DIR)/sh.opc $(CGEN_CPU_DIR)/sh64-media.cpu $(CGEN_CPU_DIR)/sh-sim.cpu Makefile
154 $(MAKE) cgen-decode $(CGEN_FLAGS_TO_PASS) \
155 cpu=sh64 mach=sh5 isa=media FLAGS="with-scache" SUFFIX="-media" EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)" \
156 archfile=$(CGEN_CPU_DIR)/sh.cpu
157 touch $@
158 $(srcdir)/sem-media.c $(srcdir)/sem-media-switch.c $(srcdir)/decode-media.c $(srcdir)/decode-media.h: $(CGEN_MAINT) stamp-decode-media
159 @true
This page took 0.032617 seconds and 4 git commands to generate.