sim: dv-sockser: add stub funcs when not available
[external/binutils.git] / sim / mn10300 / Makefile.in
1 #    Makefile template for Configure for the mn10300 sim library.
2 #    Copyright (C) 1996-2015 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 3 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, see <http://www.gnu.org/licenses/>.
17
18 ## COMMON_PRE_CONFIG_FRAG
19
20 MN10300_OBJS = \
21         itable.o semantics.o idecode.o icache.o engine.o irun.o support.o \
22         $(SIM_NEW_COMMON_OBJS) \
23         op_utils.o \
24         sim-engine.o \
25         sim-hload.o \
26         sim-hrw.o \
27         sim-resume.o \
28         sim-reason.o \
29         sim-stop.o \
30         dv-sockser.o
31
32 SIM_OBJS = $(MN10300_OBJS) interp.o
33
34 SIM_EXTRA_CLEAN = clean-igen
35 # Extra dependencies for "sim-main.h"
36 SIM_EXTRA_DEPS = mn10300_sim.h itable.h idecode.h
37
38 # Select mn10300 support in nltvals.def.
39 NL_TARGET = -DNL_TARGET_mn10300
40
41 INCLUDE = mn10300_sim.h $(srcdir)/../../include/gdb/callback.h
42
43 # List of extra flags to always pass to $(CC).
44 SIM_EXTRA_CFLAGS = -DPOLL_QUIT_INTERVAL=0x20
45
46 ## COMMON_POST_CONFIG_FRAG
47
48 idecode.o op_utils.o semantics.o: targ-vals.h
49
50 BUILT_SRC_FROM_IGEN = \
51         icache.h \
52         icache.c \
53         idecode.h \
54         idecode.c \
55         semantics.h \
56         semantics.c \
57         model.h \
58         model.c \
59         support.h \
60         support.c \
61         itable.h \
62         itable.c \
63         engine.h \
64         engine.c \
65         irun.c
66 $(BUILT_SRC_FROM_IGEN): tmp-igen
67
68
69 .PHONY: clean-igen
70 clean-igen:
71         rm -f $(BUILT_SRC_FROM_IGEN)
72         rm -f tmp-igen tmp-insns
73
74 ../igen/igen:
75         cd ../igen && $(MAKE)
76
77 IGEN_TRACE= # -G omit-line-numbers # -G trace-rule-selection -G trace-rule-rejection -G trace-entries
78 IGEN_INSN=$(srcdir)/mn10300.igen $(srcdir)/am33.igen $(srcdir)/am33-2.igen
79 IGEN_DC=$(srcdir)/mn10300.dc
80 tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen
81         cd ../igen && $(MAKE)
82         ../igen/igen \
83                 $(IGEN_TRACE) \
84                 -G gen-direct-access \
85                 -M mn10300,am33 -G gen-multi-sim=am33 \
86                 -M am33_2 \
87                 -I $(srcdir) \
88                 -i $(IGEN_INSN) \
89                 -o $(IGEN_DC) \
90                 -x \
91                 -n icache.h    -hc tmp-icache.h \
92                 -n icache.c    -c  tmp-icache.c \
93                 -n semantics.h -hs tmp-semantics.h \
94                 -n semantics.c -s  tmp-semantics.c \
95                 -n idecode.h   -hd tmp-idecode.h \
96                 -n idecode.c   -d  tmp-idecode.c \
97                 -n model.h     -hm tmp-model.h \
98                 -n model.c     -m  tmp-model.c \
99                 -n support.h   -hf tmp-support.h \
100                 -n support.c   -f  tmp-support.c \
101                 -n itable.h    -ht tmp-itable.h \
102                 -n itable.c    -t  tmp-itable.c \
103                 -n engine.h    -he tmp-engine.h \
104                 -n engine.c    -e  tmp-engine.c \
105                 -n irun.c      -r  tmp-irun.c
106         $(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h
107         $(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c
108         $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
109         $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
110         $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
111         $(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
112         $(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h
113         $(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c
114         $(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h
115         $(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c
116         $(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h
117         $(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c
118         $(SHELL) $(srcdir)/../../move-if-change tmp-engine.h engine.h
119         $(SHELL) $(srcdir)/../../move-if-change tmp-engine.c engine.c
120         $(SHELL) $(srcdir)/../../move-if-change tmp-irun.c irun.c
121         touch tmp-igen
122
123 interp.o: interp.c $(INCLUDE)