3f1c432c3720e472e3671fb28e7862e64e87d8f9
[binutils-gdb.git] / sim / or1k / Makefile.in
1 # Makefile template for configure for the or1k simulator
2 # Copyright (C) 2017-2021 Free Software Foundation, Inc.
3 #
4 # This file is part of GDB, the GNU debugger.
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
8 # the Free Software Foundation; either version 3 of the License, or
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 #
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/>.
18
19 ## COMMON_PRE_CONFIG_FRAG
20
21 OR1K_OBJS = \
22 or1k.o \
23 arch.o \
24 cpu.o \
25 decode.o \
26 model.o \
27 sem.o \
28 mloop.o \
29 sim-if.o \
30 traps.o
31
32 SIM_OBJS = \
33 $(SIM_NEW_COMMON_OBJS) \
34 cgen-utils.o \
35 cgen-trace.o \
36 cgen-scache.o \
37 cgen-run.o \
38 cgen-fpu.o \
39 cgen-accfp.o
40
41 SIM_OBJS += $(OR1K_OBJS)
42
43 # Extra headers included by sim-main.h.
44 SIM_EXTRA_DEPS = \
45 $(CGEN_INCLUDE_DEPS) \
46 or1k-sim.h \
47 $(srcdir)/../../opcodes/or1k-desc.h \
48 arch.h \
49 cpuall.h \
50 decode.h
51
52 SIM_EXTRA_CFLAGS =
53
54 SIM_EXTRA_LIBS = -lm
55
56 ## COMMON_POST_CONFIG_FRAG
57
58 arch = or1k
59
60 # or1k32bf
61
62 OR1K32BF_INCLUDE_DEPS = \
63 $(CGEN_MAIN_CPU_DEPS) \
64 cpu.h \
65 decode.h \
66 eng.h
67
68 or1k.o: or1k.c $(OR1K32BF_INCLUDE_DEPS)
69 $(COMPILE) $<
70 $(POSTCOMPILE)
71
72 sim-if.o: sim-if.c $(SIM_MAIN_DEPS) $(srcdir)/../common/sim-core.h eng.h
73 $(COMPILE) $<
74 $(POSTCOMPILE)
75
76 traps.o: traps.c $(SIM_MAIN_DEPS) eng.h
77 $(COMPILE) $<
78 $(POSTCOMPILE)
79
80 stamps: stamp-arch stamp-cpu
81
82 # NOTE: Generated source files are specified as full paths,
83 # e.g. $(srcdir)/arch.c, because make may decide the files live
84 # in objdir otherwise.
85
86 OR1K_CGEN_DEPS = \
87 $(CPU_DIR)/or1k.cpu \
88 $(CPU_DIR)/or1k.opc \
89 $(CPU_DIR)/or1kcommon.cpu \
90 $(CPU_DIR)/or1korbis.cpu \
91 $(CPU_DIR)/or1korfpx.cpu \
92 Makefile
93
94 stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(OR1K_CGEN_DEPS)
95 $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) \
96 mach=or32,or32nd \
97 archfile=$(CPU_DIR)/or1k.cpu \
98 FLAGS="with-scache"
99 $(SILENCE) touch $@
100 $(srcdir)/arch.h $(srcdir)/arch.c $(srcdir)/cpuall.h: $(CGEN_MAINT) stamp-arch
101 @true
102
103 stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(OR1K_CGEN_DEPS)
104 $(MAKE) cgen-cpu-decode $(CGEN_FLAGS_TO_PASS) \
105 cpu=or1k32bf \
106 mach=or32,or32nd \
107 archfile=$(CPU_DIR)/or1k.cpu \
108 FLAGS="with-scache" \
109 EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)"
110 $(SILENCE) touch $@
111 $(srcdir)/cpu.h $(srcdir)/cpu.c $(srcdir)/model.c $(srcdir)/sem.c $(srcdir)/sem-switch.c $(srcdir)/decode.c $(srcdir)/decode.h: $(CGEN_MAINT) stamp-cpu
112 @true