Replace memory model with one from sim/common directory.
[external/binutils.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-hrw.o \
29         sim-io.o \
30         sim-load.o \
31         sim-memopt.o \
32         sim-module.o \
33         sim-options.o \
34         sim-profile.o \
35         sim-trace.o \
36         sim-utils.o
37 SIM_RUN_OBJS = nrun.o
38
39 # List of flags to always pass to $(CC)
40 SIM_WARNINGS=@sim_warnings@
41 SIM_ENDIAN=@sim_endian@
42 SIM_HOSTENDIAN=@sim_hostendian@
43 SIM_EXTRA_CFLAGS = -I$(srcdir)/../../newlib/libc/sys/sysnecv850 \
44         $(SIM_WARNINGS) \
45         $(SIM_ENDIAN) \
46         $(SIM_HOSTENDIAN)
47 SIM_EXTRA_CLEAN = clean-extra
48
49 INCLUDE = v850_sim.h sim-main.h $(srcdir)/../../include/callback.h
50
51 ## COMMON_POST_CONFIG_FRAG
52
53 simops.h: gencode
54         ./gencode -h >$@
55
56 table.c: gencode simops.h
57         ./gencode >$@
58
59 gencode.o: gencode.c $(INCLUDE)
60         $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
61
62 v850-opc.o: $(srcdir)/../../opcodes/v850-opc.c
63         $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $<
64
65 gencode: gencode.o v850-opc.o
66         $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o v850-opc.o
67
68 clean-extra:
69         rm -f table.c simops.h gencode
70
71 interp.o: interp.c table.c $(INCLUDE)
72 simops.o: simops.c $(INCLUDE)
73 table.o: table.c