removed v850 sanitization.
[deliverable/binutils-gdb.git] / sim / common / Make-common.in
CommitLineData
f2de7dfd
AC
1# Makefile fragment for common parts of all simulators.
2# Copyright (C) 1997 Free Software Foundation, Inc.
3# Contributed 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# This Makefile fragment consists of two separate parts.
20# They are merged into the final Makefile at points denoted by
21# "## COMMON_PRE_CONFIG_FRAG" and "## COMMON_POST_CONFIG_FRAG".
22#
23# The target Makefile should look like:
24#
25#># Copyright blah blah
26#>
27#>## COMMON_PRE_CONFIG_FRAG
28#>
29#># Any overrides necessary for the SIM_FOO config vars.
30#>SIM_FOO = ...
31#>
32#>## COMMON_POST_CONFIG_FRAG
33#>
34#># Rules to build target specific .o's.
35
36## COMMON_PRE_CONFIG_FRAG
37
38VPATH = @srcdir@
39srcdir = @srcdir@
40srcroot = $(srcdir)/../..
41
42prefix = @prefix@
43exec_prefix = @exec_prefix@
44
45host_alias = @host_alias@
46target_alias = @target_alias@
47program_transform_name = @program_transform_name@
48bindir = @bindir@
49
50libdir = @libdir@
51tooldir = $(libdir)/$(target_alias)
52
53datadir = @datadir@
54mandir = @mandir@
55man1dir = $(mandir)/man1
56infodir = @infodir@
57includedir = @includedir@
58
59SHELL = /bin/sh
60
6808fd61 61INSTALL = @INSTALL@
f2de7dfd
AC
62INSTALL_PROGRAM = @INSTALL_PROGRAM@
63INSTALL_DATA = @INSTALL_DATA@
f2de7dfd
AC
64
65CC = @CC@
66CC_FOR_BUILD = @CC_FOR_BUILD@
67CFLAGS = @CFLAGS@
68SIM_BSWAP = @sim_bswap@
69SIM_CFLAGS = @sim_cflags@
70SIM_DEBUG = @sim_debug@
f2de7dfd 71SIM_TRACE = @sim_trace@
717dbb29 72SIM_PROFILE = @sim_profile@
a77aa7ec 73
f2de7dfd
AC
74HDEFINES = @HDEFINES@
75TDEFINES =
76
77AR = @AR@
78AR_FLAGS = rc
79RANLIB = @RANLIB@
80MAKEINFO = makeinfo
81
82# Each simulator's Makefile.in defines one or more of these variables
0f2811d1
DE
83# to override our settings as necessary. There is no need to define these
84# in the simulator's Makefile.in if one is using the default value. In fact
85# it's preferable not to.
f2de7dfd
AC
86
87# List of object files, less common parts.
88SIM_OBJS =
6808fd61
ILT
89# List of extra dependencies.
90# Generally this consists of simulator specific files included by sim-main.h.
91SIM_EXTRA_DEPS =
f2de7dfd
AC
92# List of flags to always pass to $(CC).
93SIM_EXTRA_CFLAGS =
94# List of extra libraries to link with.
95SIM_EXTRA_LIBS =
96# List of extra program dependencies.
97SIM_EXTRA_LIBDEPS =
98# List of main object files for `run'.
99SIM_RUN_OBJS = run.o
100# Dependency of `all' to build any extra files.
101SIM_EXTRA_ALL =
102# Dependency of `install' to install any extra files.
103SIM_EXTRA_INSTALL =
104# Dependency of `clean' to clean any extra files.
105SIM_EXTRA_CLEAN =
106
107## End COMMON_PRE_CONFIG_FRAG
108
109## COMMON_POST_CONFIG_FRAG
110
717dbb29
DE
111CONFIG_CFLAGS = @DEFS@ $(SIM_CFLAGS) $(SIM_DEBUG) $(SIM_TRACE) $(SIM_PROFILE) \
112 $(SIM_BSWAP) $(SIM_EXTRA_CFLAGS) $(HDEFINES) $(TDEFINES)
f2de7dfd
AC
113CSEARCH = -I. -I$(srcdir) -I../common -I$(srcdir)/../common \
114 -I../../include -I$(srcroot)/include \
a77aa7ec 115 -I../../bfd -I$(srcroot)/bfd \
f2de7dfd
AC
116 -I../../opcodes -I$(srcroot)/opcodes
117ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
118BUILD_CFLAGS = -g -O $(CSEARCH)
119
120LIBIBERTY_LIB = ../../libiberty/libiberty.a
121BFD_LIB = ../../bfd/libbfd.a
122OPCODES_LIB = ../../opcodes/libopcodes.a
123CONFIG_LIBS = @LIBS@
124LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \
125 $(SIM_EXTRA_LIBDEPS)
126EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \
127 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
128
129LIB_OBJS = callback.o targ-map.o $(SIM_OBJS)
130
131all: libsim.a run $(SIM_EXTRA_ALL)
132
133libsim.a: $(LIB_OBJS)
134 rm -f libsim.a
fafce69a 135 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
f2de7dfd
AC
136 $(RANLIB) libsim.a
137
138run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
139 $(CC) $(ALL_CFLAGS) -o run \
140 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
141
142run.o: $(srcdir)/../common/run.c config.h tconfig.h \
143 $(srcroot)/include/callback.h
144 $(CC) -c $(srcdir)/../common/run.c $(ALL_CFLAGS)
145
146# FIXME: Ideally, callback.o and friends live in a library outside of
147# both the gdb and simulator source trees (e.g. devo/remote. Not
148# devo/libremote because this directory would contain more than just
149# a library).
150
151callback.o: $(srcdir)/../common/callback.c config.h tconfig.h \
152 $(srcroot)/include/callback.h targ-vals.h
153 $(CC) -c $(srcdir)/../common/callback.c $(ALL_CFLAGS)
154
155targ-map.o: targ-map.c targ-vals.h
156
157gentmap: Makefile $(srcdir)/../common/gentmap.c targ-vals.def
158 $(CC_FOR_BUILD) $(srcdir)/../common/gentmap.c -o gentmap $(BUILD_CFLAGS)
159
160targ-vals.h: gentmap
161 rm -f targ-vals.h
162 ./gentmap -h >targ-vals.h
163
164targ-map.c: gentmap
165 rm -f targ-map.c
166 ./gentmap -c >targ-map.c
167
a35e91c3
AC
168
169#
170# Rules for building sim-* components. Triggered by listing the corresponding
171# .o file in the list of simulator targets.
172#
173
6808fd61
ILT
174sim_main_headers = \
175 sim-main.h \
176 $(srcdir)/../common/sim-config.h \
177 $(srcdir)/../common/sim-base.h \
178 $(srcdir)/../common/sim-basics.h \
717dbb29 179 $(srcdir)/../common/sim-model.h \
c967f187 180 $(srcdir)/../common/sim-module.h \
0f2811d1 181 $(srcdir)/../common/sim-trace.h \
717dbb29 182 $(srcdir)/../common/sim-profile.h \
f03b093c 183 $(srcdir)/../common/sim-engine.h \
fafce69a
AC
184 $(srcdir)/../common/sim-events.h \
185 $(srcdir)/../common/sim-watch.h \
186 $(srcdir)/../common/sim-assert.h \
6808fd61
ILT
187 tconfig.h
188
a35e91c3
AC
189sim-assert_h = $(srcdir)/../common/sim-assert.h
190sim-endian_h = $(srcdir)/../common/sim-endian.h
191sim-n-endian_h = $(srcdir)/../common/sim-n-endian.h
192sim-bits_h = $(srcdir)/../common/sim-bits.h
193sim-config_h = $(srcdir)/../common/sim-config.h
194sim-n-bits_h = $(srcdir)/../common/sim-n-bits.h
195sim-core_h = $(srcdir)/../common/sim-core.h
196sim-n-core_h = $(srcdir)/../common/sim-n-core.h
f03b093c 197sim-engine_h = $(srcdir)/../common/sim-engine.h
a35e91c3 198sim-events_h = $(srcdir)/../common/sim-events.h
3971886a 199sim-fpu_h = $(srcdir)/../common/sim-fpu.h
a35e91c3 200sim-io_h = $(srcdir)/../common/sim-io.h
c967f187 201sim-options_h = $(srcdir)/../common/sim-options.h
a35e91c3 202
6808fd61 203# FIXME: If this complicated way of building .o files from ../common is
c967f187 204# necessary, the reason should be documented here.
6808fd61
ILT
205
206BUILT_SRC_FROM_COMMON= \
207 sim-endian.c \
208 sim-inline.c \
209 sim-bits.c \
210 sim-events.c \
211 sim-core.c \
212 sim-config.c \
213 sim-io.c
214
fafce69a 215sim-abort.o: $(srcdir)/../common/sim-abort.c \
f03b093c 216 $(SIM_EXTRA_DEPS)
fafce69a 217 $(CC) -c $(srcdir)/../common/sim-abort.c $(ALL_CFLAGS)
f03b093c 218
fafce69a 219sim-bits.o: $(srcdir)/../common/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
6808fd61 220 $(SIM_EXTRA_DEPS)
fafce69a 221 $(CC) -c $(srcdir)/../common/sim-bits.c $(ALL_CFLAGS)
a35e91c3 222
fafce69a 223sim-config.o: $(srcdir)/../common/sim-config.c $(sim-config_h) $(sim-nconfig_h) \
6808fd61 224 $(SIM_EXTRA_DEPS)
fafce69a 225 $(CC) -c $(srcdir)/../common/sim-config.c $(ALL_CFLAGS)
a35e91c3 226
fafce69a 227sim-core.o: $(srcdir)/../common/sim-core.c $(sim-core_h) $(sim-n-core_h) \
6808fd61 228 $(SIM_EXTRA_DEPS)
fafce69a 229 $(CC) -c $(srcdir)/../common/sim-core.c $(ALL_CFLAGS)
a35e91c3 230
fafce69a 231sim-endian.o: $(srcdir)/../common/sim-endian.c $(sim-endian_h) $(sim-n-endian_h) \
6808fd61 232 $(SIM_EXTRA_DEPS)
fafce69a 233 $(CC) -c $(srcdir)/../common/sim-endian.c $(ALL_CFLAGS)
a35e91c3 234
fafce69a 235sim-engine.o: $(srcdir)/../common/sim-engine.c $(sim_main_headers) $(sim-engine_h) \
f03b093c 236 $(SIM_EXTRA_DEPS)
fafce69a 237 $(CC) -c $(srcdir)/../common/sim-engine.c $(ALL_CFLAGS)
f03b093c 238
fafce69a 239sim-events.o: $(srcdir)/../common/sim-events.c $(sim-events_h) \
6808fd61 240 $(SIM_EXTRA_DEPS)
fafce69a 241 $(CC) -c $(srcdir)/../common/sim-events.c $(ALL_CFLAGS)
a35e91c3 242
fafce69a 243sim-fpu.o: $(srcdir)/../common/sim-fpu.c $(sim-fpu_h) \
3971886a 244 $(SIM_EXTRA_DEPS)
fafce69a
AC
245 $(CC) -c $(srcdir)/../common/sim-fpu.c $(ALL_CFLAGS)
246
247sim-hload.o: $(srcdir)/../common/sim-hload.c $(sim-assert_h) \
248 $(SIM_EXTRA_DEPS)
249 $(CC) -c $(srcdir)/../common/sim-hload.c $(ALL_CFLAGS)
3971886a 250
a35e91c3
AC
251sim-inline.c: $(srcdir)/../common/sim-inline.c
252 rm -f $@ tmp-$@
253 echo "# 1 \"$(srcdir)/../common/$@\"" > tmp-$@
254 cat $(srcdir)/../common/$@ >> tmp-$@
255 $(srcdir)/../../move-if-change tmp-$@ $@
256
fafce69a 257sim-io.o: $(srcdir)/../common/sim-io.c $(sim_main_headers) $(sim-io_h) \
6808fd61 258 $(SIM_EXTRA_DEPS)
fafce69a 259 $(CC) -c $(srcdir)/../common/sim-io.c $(ALL_CFLAGS)
a35e91c3 260
717dbb29 261sim-module.o: $(srcdir)/../common/sim-module.c $(sim_main_headers) \
c967f187 262 $(sim-io_h) $(SIM_EXTRA_DEPS)
717dbb29
DE
263 $(CC) -c $(srcdir)/../common/sim-module.c $(ALL_CFLAGS)
264
e9b2f579 265sim-options.o: $(srcdir)/../common/sim-options.c $(sim_main_headers) \
c967f187 266 $(sim-options_h) $(sim-io_h) $(SIM_EXTRA_DEPS)
0f2811d1
DE
267 $(CC) -c $(srcdir)/../common/sim-options.c $(ALL_CFLAGS)
268
fafce69a 269sim-reason.o: $(srcdir)/../common/sim-reason.c $(sim_main_headers) \
f03b093c 270 $(SIM_EXTRA_DEPS)
fafce69a 271 $(CC) -c $(srcdir)/../common/sim-reason.c $(ALL_CFLAGS)
f03b093c 272
fafce69a 273sim-resume.o: $(srcdir)/../common/sim-resume.c $(sim_main_headers) \
f03b093c 274 $(SIM_EXTRA_DEPS)
fafce69a 275 $(CC) -c $(srcdir)/../common/sim-resume.c $(ALL_CFLAGS)
f03b093c 276
fafce69a 277sim-run.o: $(srcdir)/../common/sim-run.c $(sim_main_headers) \
f03b093c 278 $(SIM_EXTRA_DEPS)
fafce69a 279 $(CC) -c $(srcdir)/../common/sim-run.c $(ALL_CFLAGS)
f03b093c 280
fafce69a 281sim-stop.o: $(srcdir)/../common/sim-stop.c $(sim_main_headers) \
f03b093c 282 $(SIM_EXTRA_DEPS)
fafce69a 283 $(CC) -c $(srcdir)/../common/sim-stop.c $(ALL_CFLAGS)
f03b093c 284
e9b2f579 285sim-trace.o: $(srcdir)/../common/sim-trace.c $(sim_main_headers) \
c967f187 286 $(sim-options_h) $(sim-io_h) $(SIM_EXTRA_DEPS)
e9b2f579
DE
287 $(CC) -c $(srcdir)/../common/sim-trace.c $(ALL_CFLAGS)
288
717dbb29 289sim-profile.o: $(srcdir)/../common/sim-profile.c $(sim_main_headers) \
c967f187 290 $(sim-options_h) $(sim-io_h) $(SIM_EXTRA_DEPS)
717dbb29
DE
291 $(CC) -c $(srcdir)/../common/sim-profile.c $(ALL_CFLAGS)
292
c967f187
DE
293sim-model.o: $(srcdir)/../common/sim-model.c $(sim_main_headers) \
294 $(sim-io_h) $(SIM_EXTRA_DEPS)
295 $(CC) -c $(srcdir)/../common/sim-model.c $(ALL_CFLAGS)
296
6808fd61 297sim-utils.o: $(srcdir)/../common/sim-utils.c $(sim_main_headers) \
c967f187 298 $(SIM_EXTRA_DEPS)
6808fd61 299 $(CC) -c $(srcdir)/../common/sim-utils.c $(ALL_CFLAGS)
a35e91c3 300
fafce69a
AC
301sim-watch.o: $(srcdir)/../common/sim-watch.c $(sim_main_headers) \
302 $(SIM_EXTRA_DEPS)
303 $(CC) -c $(srcdir)/../common/sim-watch.c $(ALL_CFLAGS)
304
0f2811d1
DE
305sim-load.o: $(srcdir)/../common/sim-load.c
306 $(CC) -c $(srcdir)/../common/sim-load.c $(ALL_CFLAGS)
307
c95d08a8
DE
308nrun.o: $(srcdir)/../common/nrun.c config.h tconfig.h \
309 $(srcroot)/include/callback.h $(sim_main_headers)
310 $(CC) -c $(srcdir)/../common/nrun.c $(ALL_CFLAGS)
a35e91c3 311
c967f187
DE
312# CGEN support.
313
314cgen-scache.o: $(srcdir)/../common/cgen-scache.c $(sim_main_headers) \
315 $(SIM_EXTRA_DEPS) $(srcdir)/../common/cgen-scache.h
316 $(CC) -c $(srcdir)/../common/cgen-scache.c $(ALL_CFLAGS)
317
318cgen-trace.o: $(srcdir)/../common/cgen-trace.c $(sim_main_headers) \
319 $(SIM_EXTRA_DEPS) $(srcdir)/../common/cgen-trace.h
320 $(CC) -c $(srcdir)/../common/cgen-trace.c $(ALL_CFLAGS)
321
322cgen-utils.o: $(srcdir)/../common/cgen-utils.c $(sim_main_headers) \
3971886a 323 $(SIM_EXTRA_DEPS) mem-ops.h sem-ops.h
c967f187
DE
324 $(CC) -c $(srcdir)/../common/cgen-utils.c $(ALL_CFLAGS)
325
326# Support targets.
327
f2de7dfd
AC
328install: install-common $(SIM_EXTRA_INSTALL)
329
6808fd61
ILT
330install-common: installdirs
331 n=`echo run | sed '$(program_transform_name)'`; \
332 $(INSTALL_PROGRAM) run $(bindir)/$$n
333
334installdirs:
335 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
f2de7dfd
AC
336
337check:
338
339info:
340clean-info:
341install-info:
342
343.NOEXPORT:
344MAKEOVERRIDES=
345
346tags etags: TAGS
347
348TAGS: force
645ab3ec 349 etags --regex '/^\/[*] TAGS: .*/' *.c *.h
f2de7dfd 350
717dbb29 351clean: $(SIM_EXTRA_CLEAN)
f2de7dfd
AC
352 rm -f *.[oa] *~ core
353 rm -f run libsim.a
354 rm -f gentmap targ-map.c targ-vals.h
6808fd61 355 rm -f $(BUILT_SRC_FROM_COMMON)
f2de7dfd 356
717dbb29 357distclean mostlyclean maintainer-clean realclean: clean
f2de7dfd
AC
358 rm -f TAGS
359 rm -f Makefile config.cache config.log config.status
360 rm -f tconfig.h config.h stamp-h
0f399b0c 361 rm -f targ-vals.def
f2de7dfd
AC
362
363.c.o:
364 $(CC) -c $(ALL_CFLAGS) $<
365
366# Dummy target to force execution of dependent targets.
367force:
368
369Makefile: Makefile.in $(srcdir)/../common/Make-common.in config.status
370 CONFIG_HEADERS= $(SHELL) ./config.status
371
372config.status: configure
373 $(SHELL) ./config.status --recheck
374
375config.h: stamp-h ; @true
376stamp-h: config.in config.status
377 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
378
379## End COMMON_POST_CONFIG_FRAG
This page took 0.127326 seconds and 4 git commands to generate.