xref: /netbsd-src/external/gpl3/gdb.old/dist/sim/lm32/Makefile.in (revision 200d779b75dbeafa7bc01fd0f60bc61185f6967b)
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
42traps.o: traps.c targ-vals.h $(SIM_MAIN_DEPS)
43
44sim-if.o: sim-if.c $(SIM_MAIN_DEPS) $(srcdir)/../common/sim-core.h
45
46LM32BF_INCLUDE_DEPS = \
47	$(CGEN_MAIN_CPU_DEPS) \
48	cpu.h decode.h eng.h
49
50lm32.o: lm32.c $(LM32BF_INCLUDE_DEPS)
51
52# FIXME: Use of `mono' is wip.
53mloop.c eng.h: stamp-mloop
54stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile
55	$(SHELL) $(srccom)/genmloop.sh \
56		-mono -fast -pbb -switch sem-switch.c \
57		-cpu lm32bf -infile $(srcdir)/mloop.in
58	$(SHELL) $(srcroot)/move-if-change eng.hin eng.h
59	$(SHELL) $(srcroot)/move-if-change mloop.cin mloop.c
60	touch stamp-mloop
61mloop.o: mloop.c sem-switch.c
62
63cpu.o: cpu.c $(LM32BF_INCLUDE_DEPS)
64decode.o: decode.c $(LM32BF_INCLUDE_DEPS)
65sem.o: sem.c $(LM32BF_INCLUDE_DEPS)
66model.o: model.c $(LM32BF_INCLUDE_DEPS)
67
68lm32-clean:
69	rm -f mloop.c eng.h stamp-mloop
70	rm -f stamp-arch stamp-cpu
71	rm -f tmp-*
72
73# cgen support, enable with --enable-cgen-maint
74CGEN_MAINT = ; @true
75# The following line is commented in or out depending upon --enable-cgen-maint.
76@CGEN_MAINT@CGEN_MAINT =
77
78stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(CPU_DIR)/lm32.cpu
79	$(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=all \
80	  archfile=$(CPU_DIR)/lm32.cpu \
81	  FLAGS="with-scache with-profile=fn"
82	touch stamp-arch
83arch.h arch.c cpuall.h: $(CGEN_MAINT) stamp-arch
84
85stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(CPU_DIR)/lm32.cpu
86	$(MAKE) cgen-cpu-decode $(CGEN_FLAGS_TO_PASS) \
87	  cpu=lm32bf mach=lm32 SUFFIX= \
88	  archfile=$(CPU_DIR)/lm32.cpu \
89	  FLAGS="with-scache with-profile=fn" \
90	  EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)"
91	touch stamp-cpu
92cpu.h sem.c sem-switch.c model.c decode.c decode.h: $(CGEN_MAINT) stamp-cpu
93