Commit | Line | Data |
---|---|---|
b34f6357 | 1 | # Makefile template for Configure for the frv simulator |
dc3cf14f | 2 | # Copyright (C) 1998, 1999, 2000, 2001, 2003, 2007, 2008, 2009, 2010 |
6aba47ca | 3 | # Free Software Foundation, Inc. |
b34f6357 DB |
4 | # Contributed by Red Hat. |
5 | # | |
6 | # This program is free software; you can redistribute it and/or modify | |
7 | # it under the terms of the GNU General Public License as published by | |
4744ac1b | 8 | # the Free Software Foundation; either version 3 of the License, or |
b34f6357 DB |
9 | # (at your option) any later version. |
10 | # | |
11 | # This program is distributed in the hope that it will be useful, | |
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | # GNU General Public License for more details. | |
15 | # | |
4744ac1b JB |
16 | # You should have received a copy of the GNU General Public License |
17 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
b34f6357 DB |
18 | |
19 | ## COMMON_PRE_CONFIG_FRAG | |
20 | ||
21 | FRV_OBJS = frv.o cpu.o decode.o sem.o model.o mloop.o cgen-par.o | |
22 | ||
23 | CONFIG_DEVICES = dv-sockser.o | |
24 | CONFIG_DEVICES = | |
25 | ||
26 | SIM_OBJS = \ | |
27 | $(SIM_NEW_COMMON_OBJS) \ | |
28 | sim-cpu.o \ | |
29 | sim-hload.o \ | |
30 | sim-hrw.o \ | |
31 | sim-model.o \ | |
32 | sim-reg.o \ | |
33 | cgen-utils.o cgen-trace.o cgen-scache.o cgen-fpu.o cgen-accfp.o \ | |
34 | cgen-run.o sim-reason.o sim-engine.o sim-stop.o \ | |
35 | sim-if.o arch.o \ | |
36 | $(FRV_OBJS) \ | |
37 | traps.o interrupts.o memory.o cache.o pipeline.o \ | |
676a64f4 | 38 | profile.o profile-fr400.o profile-fr450.o profile-fr500.o profile-fr550.o options.o \ |
b34f6357 DB |
39 | devices.o reset.o registers.o \ |
40 | $(CONFIG_DEVICES) | |
41 | ||
42 | # Extra headers included by sim-main.h. | |
43 | SIM_EXTRA_DEPS = \ | |
44 | $(CGEN_INCLUDE_DEPS) \ | |
45 | arch.h cpuall.h frv-sim.h $(srcdir)/../../opcodes/frv-desc.h cache.h \ | |
46 | registers.h profile.h \ | |
47 | $(sim-options_h) | |
48 | ||
49 | SIM_EXTRA_CFLAGS = @sim_trapdump@ | |
50 | ||
51 | SIM_RUN_OBJS = nrun.o | |
52 | SIM_EXTRA_CLEAN = frv-clean | |
53 | ||
54 | # This selects the frv newlib/libgloss syscall definitions. | |
55 | NL_TARGET = -DNL_TARGET_frv | |
56 | ||
57 | ## COMMON_POST_CONFIG_FRAG | |
58 | ||
59 | arch = frv | |
60 | ||
61 | arch.o: arch.c $(SIM_MAIN_DEPS) | |
62 | ||
63 | devices.o: devices.c $(SIM_MAIN_DEPS) | |
64 | ||
65 | # FRV objs | |
66 | ||
67 | FRVBF_INCLUDE_DEPS = \ | |
68 | $(CGEN_MAIN_CPU_DEPS) \ | |
69 | $(SIM_EXTRA_DEPS) \ | |
70 | cpu.h decode.h eng.h | |
71 | ||
72 | frv.o: frv.c $(FRVBF_INCLUDE_DEPS) | |
73 | traps.o: traps.c $(FRVBF_INCLUDE_DEPS) | |
74 | pipeline.o: pipeline.c $(FRVBF_INCLUDE_DEPS) | |
75 | interrupts.o: interrupts.c $(FRVBF_INCLUDE_DEPS) | |
76 | memory.o: memory.c $(FRVBF_INCLUDE_DEPS) | |
77 | cache.o: cache.c $(FRVBF_INCLUDE_DEPS) | |
78 | options.o: options.c $(FRVBF_INCLUDE_DEPS) | |
79 | reset.o: reset.c $(FRVBF_INCLUDE_DEPS) | |
80 | registers.o: registers.c $(FRVBF_INCLUDE_DEPS) | |
e930b1f5 | 81 | profile.o: profile.c profile-fr400.h profile-fr500.h profile-fr550.h $(FRVBF_INCLUDE_DEPS) |
b34f6357 | 82 | profile-fr400.o: profile-fr400.c profile-fr400.h $(FRVBF_INCLUDE_DEPS) |
676a64f4 | 83 | profile-fr450.o: profile-fr450.c $(FRVBF_INCLUDE_DEPS) |
b34f6357 | 84 | profile-fr500.o: profile-fr500.c profile-fr500.h $(FRVBF_INCLUDE_DEPS) |
e930b1f5 | 85 | profile-fr550.o: profile-fr550.c profile-fr550.h $(FRVBF_INCLUDE_DEPS) |
b34f6357 DB |
86 | sim-if.o: sim-if.c $(FRVBF_INCLUDE_DEPS) $(srcdir)/../common/sim-core.h eng.h |
87 | ||
88 | ||
89 | # FIXME: Use of `mono' is wip. | |
90 | mloop.c eng.h: stamp-mloop | |
91 | stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile | |
086c6838 | 92 | $(SHELL) $(srccom)/genmloop.sh -shell $(SHELL) \ |
b34f6357 DB |
93 | -mono -scache -parallel-generic-write -parallel-only \ |
94 | -cpu frvbf -infile $(srcdir)/mloop.in | |
95 | $(SHELL) $(srcroot)/move-if-change eng.hin eng.h | |
96 | $(SHELL) $(srcroot)/move-if-change mloop.cin mloop.c | |
97 | touch stamp-mloop | |
98 | mloop.o: mloop.c $(FRVBF_INCLUDE_DEPS) | |
99 | ||
100 | cpu.o: cpu.c $(FRVBF_INCLUDE_DEPS) | |
101 | decode.o: decode.c $(FRVBF_INCLUDE_DEPS) | |
102 | sem.o: sem.c $(FRVBF_INCLUDE_DEPS) | |
103 | model.o: model.c $(FRVBF_INCLUDE_DEPS) | |
104 | ||
105 | frv-clean: | |
106 | rm -f mloop.c eng.h stamp-mloop | |
107 | rm -f tmp-* | |
108 | rm -f stamp-arch stamp-cpu | |
109 | ||
110 | # cgen support, enable with --enable-cgen-maint | |
111 | CGEN_MAINT = ; @true | |
112 | # The following line is commented in or out depending upon --enable-cgen-maint. | |
113 | @CGEN_MAINT@CGEN_MAINT = | |
114 | ||
115 | stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(srcdir)/../../cpu/frv.cpu | |
b34f6357 | 116 | $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=all \ |
d89a78b6 | 117 | archfile=$(srcdir)/../../cpu/frv.cpu \ |
b34f6357 | 118 | FLAGS="with-scache" |
b34f6357 DB |
119 | touch stamp-arch |
120 | arch.h arch.c cpuall.h: $(CGEN_MAINT) stamp-arch | |
121 | # @true | |
122 | ||
b34f6357 | 123 | stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(srcdir)/../../cpu/frv.cpu |
b34f6357 | 124 | $(MAKE) cgen-cpu-decode $(CGEN_FLAGS_TO_PASS) \ |
676a64f4 | 125 | cpu=frvbf mach=frv,fr550,fr500,fr450,fr400,tomcat,simple SUFFIX= \ |
d89a78b6 | 126 | archfile=$(srcdir)/../../cpu/frv.cpu \ |
b34f6357 DB |
127 | FLAGS="with-scache with-profile=fn with-generic-write with-parallel-only" \ |
128 | EXTRAFILES="$(CGEN_CPU_SEM)" | |
b34f6357 DB |
129 | touch stamp-cpu |
130 | cpu.h sem.c model.c decode.c decode.h: $(CGEN_MAINT) stamp-cpu | |
131 | # @true |