Add real SIM_DESC arg to v850 simulator.
[deliverable/binutils-gdb.git] / sim / v850 / Makefile.in
1 # Makefile template for Configure for the V850 sim library.
2 # Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 # Written by Cygnus Support.
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 2 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, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 ## COMMON_PRE_CONFIG_FRAG
20
21 SIM_OBJS = interp.o table.o simops.o \
22 sim-config.o \
23 sim-core.o \
24 sim-engine.o \
25 sim-endian.o \
26 sim-events.o \
27 sim-hload.o \
28 sim-io.o \
29 sim-load.o \
30 sim-module.o \
31 sim-options.o \
32 sim-profile.o \
33 sim-trace.o \
34 sim-utils.o
35 SIM_RUN_OBJS = nrun.o
36
37 # List of flags to always pass to $(CC)
38 SIM_WARNINGS=@sim_warnings@
39 SIM_ENDIAN=@sim_endian@
40 SIM_HOSTENDIAN=@sim_hostendian@
41 SIM_EXTRA_CFLAGS = -I$(srcdir)/../../newlib/libc/sys/sysnecv850 \
42 $(SIM_WARNINGS) \
43 $(SIM_ENDIAN) \
44 $(SIM_HOSTENDIAN)
45 SIM_EXTRA_CLEAN = clean-extra
46
47 INCLUDE = v850_sim.h $(srcdir)/../../include/callback.h
48
49 ## COMMON_POST_CONFIG_FRAG
50
51 simops.h: gencode
52 ./gencode -h >$@
53
54 table.c: gencode simops.h
55 ./gencode >$@
56
57 gencode.o: gencode.c $(INCLUDE)
58 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
59
60 v850-opc.o: $(srcdir)/../../opcodes/v850-opc.c
61 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $<
62
63 gencode: gencode.o v850-opc.o
64 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o v850-opc.o
65
66 clean-extra:
67 rm -f table.c simops.h gencode
68
69 interp.o: interp.c table.c $(INCLUDE)
70 simops.o: simops.c $(INCLUDE)
71 table.o: table.c
This page took 0.032104 seconds and 5 git commands to generate.