gdb/
[deliverable/binutils-gdb.git] / sim / lm32 / Makefile.in
CommitLineData
c28c63d8
JB
1# Makefile for Lattice Mico32 simulator.
2# Contributed by Jon Beniston <jon@beniston.com>
3
4## COMMON_PRE_CONFIG_FRAG
5
6# List of object files, less common parts.
7SIM_OBJS = \
8 $(SIM_NEW_COMMON_OBJS) \
9 sim-cpu.o \
10 sim-hload.o \
11 sim-hrw.o \
12 sim-model.o \
13 sim-reg.o \
14 sim-signal.o \
15 cgen-utils.o cgen-trace.o cgen-scache.o \
16 cgen-run.o sim-reason.o sim-engine.o sim-stop.o \
17 sim-if.o arch.o \
18 cpu.o decode.o sem.o model.o mloop.o \
19 lm32.o traps.o user.o
20
21# List of extra dependencies.
22# Generally this consists of simulator specific files included by sim-main.h.
23SIM_EXTRA_DEPS = $(CGEN_INCLUDE_DEPS) $(srcdir)/../../opcodes/lm32-desc.h
24
25# List of flags to always pass to $(CC).
26#SIM_EXTRA_CFLAGS =
27
28# List of main object files for `run'.
29SIM_RUN_OBJS = nrun.o
30
31SIM_EXTRA_CLEAN = lm32-clean
32
33# This selects the lm32 newlib/libgloss syscall definitions.
34NL_TARGET = -DNL_TARGET_lm32
35
36## COMMON_POST_CONFIG_FRAG
37
38arch = lm32
39
40arch.o: arch.c $(SIM_MAIN_DEPS)
41
42sim-if.o: sim-if.c $(SIM_MAIN_DEPS) $(srcdir)/../common/sim-core.h
43
44LM32BF_INCLUDE_DEPS = \
45 $(CGEN_MAIN_CPU_DEPS) \
46 cpu.h decode.h eng.h
47
48lm32.o: lm32.c $(LM32BF_INCLUDE_DEPS)
49
50# FIXME: Use of `mono' is wip.
51mloop.c eng.h: stamp-mloop
52stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile
53 $(SHELL) $(srccom)/genmloop.sh \
54 -mono -fast -pbb -switch sem-switch.c \
55 -cpu lm32bf -infile $(srcdir)/mloop.in
56 $(SHELL) $(srcroot)/move-if-change eng.hin eng.h
57 $(SHELL) $(srcroot)/move-if-change mloop.cin mloop.c
58 touch stamp-mloop
59mloop.o: mloop.c sem-switch.c
60
61cpu.o: cpu.c $(LM32BF_INCLUDE_DEPS)
62decode.o: decode.c $(LM32BF_INCLUDE_DEPS)
63sem.o: sem.c $(LM32BF_INCLUDE_DEPS)
64model.o: model.c $(LM32BF_INCLUDE_DEPS)
65
66lm32-clean:
67 rm -f mloop.c eng.h stamp-mloop
68 rm -f stamp-arch stamp-cpu
69 rm -f tmp-*
70
71# cgen support, enable with --enable-cgen-maint
72CGEN_MAINT = ; @true
73# The following line is commented in or out depending upon --enable-cgen-maint.
74@CGEN_MAINT@CGEN_MAINT =
75
76stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(CGEN_CPU_DIR)/lm32.cpu
77 $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=all \
78 archfile=$(CGEN_CPU_DIR)/lm32.cpu \
79 FLAGS="with-scache with-profile=fn"
80 touch stamp-arch
81arch.h arch.c cpuall.h: $(CGEN_MAINT) stamp-arch
82
83stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(CGEN_CPU_DIR)/lm32.cpu
84 $(MAKE) cgen-cpu-decode $(CGEN_FLAGS_TO_PASS) \
85 cpu=lm32bf mach=lm32 SUFFIX= \
86 archfile=$(CGEN_CPU_DIR)/lm32.cpu \
87 FLAGS="with-scache with-profile=fn" \
88 EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)"
89 touch stamp-cpu
90cpu.h sem.c sem-switch.c model.c decode.c decode.h: $(CGEN_MAINT) stamp-cpu
This page took 0.026371 seconds and 4 git commands to generate.