Add real SIM_DESC arg to v850 simulator.
[deliverable/binutils-gdb.git] / sim / v850 / Makefile.in
CommitLineData
22c1c7dd 1# Makefile template for Configure for the V850 sim library.
9cdd2c6d 2# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
22c1c7dd
JL
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
9cdd2c6d
AC
19## COMMON_PRE_CONFIG_FRAG
20
21SIM_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
35SIM_RUN_OBJS = nrun.o
36
37# List of flags to always pass to $(CC)
38SIM_WARNINGS=@sim_warnings@
39SIM_ENDIAN=@sim_endian@
40SIM_HOSTENDIAN=@sim_hostendian@
41SIM_EXTRA_CFLAGS = -I$(srcdir)/../../newlib/libc/sys/sysnecv850 \
42 $(SIM_WARNINGS) \
43 $(SIM_ENDIAN) \
44 $(SIM_HOSTENDIAN)
295dbbe4 45SIM_EXTRA_CLEAN = clean-extra
22c1c7dd 46
295dbbe4 47INCLUDE = v850_sim.h $(srcdir)/../../include/callback.h
22c1c7dd 48
9cdd2c6d 49## COMMON_POST_CONFIG_FRAG
22c1c7dd 50
295dbbe4 51simops.h: gencode
22c1c7dd
JL
52 ./gencode -h >$@
53
295dbbe4 54table.c: gencode simops.h
22c1c7dd
JL
55 ./gencode >$@
56
295dbbe4
SG
57gencode.o: gencode.c $(INCLUDE)
58 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
22c1c7dd 59
295dbbe4
SG
60v850-opc.o: $(srcdir)/../../opcodes/v850-opc.c
61 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $<
22c1c7dd 62
295dbbe4
SG
63gencode: gencode.o v850-opc.o
64 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o v850-opc.o
22c1c7dd 65
295dbbe4
SG
66clean-extra:
67 rm -f table.c simops.h gencode
22c1c7dd 68
295dbbe4
SG
69interp.o: interp.c table.c $(INCLUDE)
70simops.o: simops.c $(INCLUDE)
71table.o: table.c
This page took 0.054971 seconds and 4 git commands to generate.