* sim-types.h (SIGNED64): ##i64 when _MSC_VER, not _WIN32.
[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
92f91d1f
AC
74SIM_ASSERT = @sim_assert@
75SIM_ALIGNMENT = @sim_alignment@
76SIM_ENDIAN = @sim_endian@
77SIM_FLOAT = @sim_float@
78SIM_HARDWARE = @sim_hardware@
79SIM_HOSTENDIAN = @sim_hostendian@
80SIM_INLINE = @sim_inline@
81SIM_PACKAGES = @sim_packages@
82SIM_REGPARM = @sim_regparm@
83SIM_RESERVED_BITS = @sim_reserved_bits@
84SIM_SMP = @sim_smp@
85SIM_STDCALL = @sim_stdcall@
86SIM_WARNINGS = @sim_warnings@
87SIM_XOR_ENDIAN = @sim_xor_endian@
88
89
f2de7dfd
AC
90HDEFINES = @HDEFINES@
91TDEFINES =
92
93AR = @AR@
94AR_FLAGS = rc
95RANLIB = @RANLIB@
96MAKEINFO = makeinfo
97
98# Each simulator's Makefile.in defines one or more of these variables
0f2811d1
DE
99# to override our settings as necessary. There is no need to define these
100# in the simulator's Makefile.in if one is using the default value. In fact
101# it's preferable not to.
f2de7dfd
AC
102
103# List of object files, less common parts.
104SIM_OBJS =
6808fd61
ILT
105# List of extra dependencies.
106# Generally this consists of simulator specific files included by sim-main.h.
107SIM_EXTRA_DEPS =
f2de7dfd
AC
108# List of flags to always pass to $(CC).
109SIM_EXTRA_CFLAGS =
110# List of extra libraries to link with.
111SIM_EXTRA_LIBS =
112# List of extra program dependencies.
113SIM_EXTRA_LIBDEPS =
114# List of main object files for `run'.
115SIM_RUN_OBJS = run.o
116# Dependency of `all' to build any extra files.
117SIM_EXTRA_ALL =
118# Dependency of `install' to install any extra files.
119SIM_EXTRA_INSTALL =
120# Dependency of `clean' to clean any extra files.
121SIM_EXTRA_CLEAN =
122
123## End COMMON_PRE_CONFIG_FRAG
124
125## COMMON_POST_CONFIG_FRAG
126
92f91d1f
AC
127CONFIG_CFLAGS = @DEFS@ \
128 $(SIM_CFLAGS) \
129 $(SIM_DEBUG) \
130 $(SIM_TRACE) \
131 $(SIM_PROFILE) \
132 $(SIM_BSWAP) \
133 $(SIM_ASSERT) \
134 $(SIM_ALIGNMENT) \
135 $(SIM_ENDIAN) \
136 $(SIM_FLOAT) \
137 $(SIM_HARDWARE) \
138 $(SIM_HOSTENDIAN) \
139 $(SIM_INLINE) \
140 $(SIM_PACKAGES) \
141 $(SIM_REGPARM) \
142 $(SIM_RESERVED_BITS) \
143 $(SIM_SMP) \
144 $(SIM_STDCALL) \
145 $(SIM_WARNINGS) \
146 $(SIM_XOR_ENDIAN) \
147 $(SIM_EXTRA_CFLAGS) \
148 $(HDEFINES) $(TDEFINES)
f2de7dfd
AC
149CSEARCH = -I. -I$(srcdir) -I../common -I$(srcdir)/../common \
150 -I../../include -I$(srcroot)/include \
a77aa7ec 151 -I../../bfd -I$(srcroot)/bfd \
f2de7dfd
AC
152 -I../../opcodes -I$(srcroot)/opcodes
153ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
154BUILD_CFLAGS = -g -O $(CSEARCH)
155
156LIBIBERTY_LIB = ../../libiberty/libiberty.a
157BFD_LIB = ../../bfd/libbfd.a
158OPCODES_LIB = ../../opcodes/libopcodes.a
159CONFIG_LIBS = @LIBS@
160LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \
161 $(SIM_EXTRA_LIBDEPS)
162EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \
163 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
164
165LIB_OBJS = callback.o targ-map.o $(SIM_OBJS)
166
167all: libsim.a run $(SIM_EXTRA_ALL)
168
169libsim.a: $(LIB_OBJS)
170 rm -f libsim.a
fafce69a 171 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
f2de7dfd
AC
172 $(RANLIB) libsim.a
173
174run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
175 $(CC) $(ALL_CFLAGS) -o run \
176 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
177
178run.o: $(srcdir)/../common/run.c config.h tconfig.h \
179 $(srcroot)/include/callback.h
180 $(CC) -c $(srcdir)/../common/run.c $(ALL_CFLAGS)
181
182# FIXME: Ideally, callback.o and friends live in a library outside of
183# both the gdb and simulator source trees (e.g. devo/remote. Not
184# devo/libremote because this directory would contain more than just
185# a library).
186
187callback.o: $(srcdir)/../common/callback.c config.h tconfig.h \
188 $(srcroot)/include/callback.h targ-vals.h
189 $(CC) -c $(srcdir)/../common/callback.c $(ALL_CFLAGS)
190
191targ-map.o: targ-map.c targ-vals.h
192
193gentmap: Makefile $(srcdir)/../common/gentmap.c targ-vals.def
194 $(CC_FOR_BUILD) $(srcdir)/../common/gentmap.c -o gentmap $(BUILD_CFLAGS)
195
196targ-vals.h: gentmap
197 rm -f targ-vals.h
198 ./gentmap -h >targ-vals.h
199
200targ-map.c: gentmap
201 rm -f targ-map.c
202 ./gentmap -c >targ-map.c
203
a35e91c3
AC
204
205#
206# Rules for building sim-* components. Triggered by listing the corresponding
207# .o file in the list of simulator targets.
208#
209
6808fd61
ILT
210sim_main_headers = \
211 sim-main.h \
212 $(srcdir)/../common/sim-config.h \
213 $(srcdir)/../common/sim-base.h \
214 $(srcdir)/../common/sim-basics.h \
a34abff8 215 $(srcdir)/../common/sim-memopt.h \
717dbb29 216 $(srcdir)/../common/sim-model.h \
c967f187 217 $(srcdir)/../common/sim-module.h \
0f2811d1 218 $(srcdir)/../common/sim-trace.h \
717dbb29 219 $(srcdir)/../common/sim-profile.h \
f03b093c 220 $(srcdir)/../common/sim-engine.h \
fafce69a
AC
221 $(srcdir)/../common/sim-events.h \
222 $(srcdir)/../common/sim-watch.h \
223 $(srcdir)/../common/sim-assert.h \
6808fd61
ILT
224 tconfig.h
225
a35e91c3
AC
226sim-assert_h = $(srcdir)/../common/sim-assert.h
227sim-endian_h = $(srcdir)/../common/sim-endian.h
228sim-n-endian_h = $(srcdir)/../common/sim-n-endian.h
229sim-bits_h = $(srcdir)/../common/sim-bits.h
230sim-config_h = $(srcdir)/../common/sim-config.h
231sim-n-bits_h = $(srcdir)/../common/sim-n-bits.h
232sim-core_h = $(srcdir)/../common/sim-core.h
233sim-n-core_h = $(srcdir)/../common/sim-n-core.h
f03b093c 234sim-engine_h = $(srcdir)/../common/sim-engine.h
a35e91c3 235sim-events_h = $(srcdir)/../common/sim-events.h
3971886a 236sim-fpu_h = $(srcdir)/../common/sim-fpu.h
a35e91c3 237sim-io_h = $(srcdir)/../common/sim-io.h
c967f187 238sim-options_h = $(srcdir)/../common/sim-options.h
a35e91c3 239
6808fd61 240# FIXME: If this complicated way of building .o files from ../common is
c967f187 241# necessary, the reason should be documented here.
6808fd61
ILT
242
243BUILT_SRC_FROM_COMMON= \
244 sim-endian.c \
245 sim-inline.c \
246 sim-bits.c \
247 sim-events.c \
248 sim-core.c \
249 sim-config.c \
250 sim-io.c
251
fafce69a 252sim-abort.o: $(srcdir)/../common/sim-abort.c \
f03b093c 253 $(SIM_EXTRA_DEPS)
fafce69a 254 $(CC) -c $(srcdir)/../common/sim-abort.c $(ALL_CFLAGS)
f03b093c 255
fafce69a 256sim-bits.o: $(srcdir)/../common/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
6808fd61 257 $(SIM_EXTRA_DEPS)
fafce69a 258 $(CC) -c $(srcdir)/../common/sim-bits.c $(ALL_CFLAGS)
a35e91c3 259
fafce69a 260sim-config.o: $(srcdir)/../common/sim-config.c $(sim-config_h) $(sim-nconfig_h) \
6808fd61 261 $(SIM_EXTRA_DEPS)
fafce69a 262 $(CC) -c $(srcdir)/../common/sim-config.c $(ALL_CFLAGS)
a35e91c3 263
fafce69a 264sim-core.o: $(srcdir)/../common/sim-core.c $(sim-core_h) $(sim-n-core_h) \
6808fd61 265 $(SIM_EXTRA_DEPS)
fafce69a 266 $(CC) -c $(srcdir)/../common/sim-core.c $(ALL_CFLAGS)
a35e91c3 267
fafce69a 268sim-endian.o: $(srcdir)/../common/sim-endian.c $(sim-endian_h) $(sim-n-endian_h) \
6808fd61 269 $(SIM_EXTRA_DEPS)
fafce69a 270 $(CC) -c $(srcdir)/../common/sim-endian.c $(ALL_CFLAGS)
a35e91c3 271
fafce69a 272sim-engine.o: $(srcdir)/../common/sim-engine.c $(sim_main_headers) $(sim-engine_h) \
f03b093c 273 $(SIM_EXTRA_DEPS)
fafce69a 274 $(CC) -c $(srcdir)/../common/sim-engine.c $(ALL_CFLAGS)
f03b093c 275
fafce69a 276sim-events.o: $(srcdir)/../common/sim-events.c $(sim-events_h) \
6808fd61 277 $(SIM_EXTRA_DEPS)
fafce69a 278 $(CC) -c $(srcdir)/../common/sim-events.c $(ALL_CFLAGS)
a35e91c3 279
fafce69a 280sim-fpu.o: $(srcdir)/../common/sim-fpu.c $(sim-fpu_h) \
3971886a 281 $(SIM_EXTRA_DEPS)
fafce69a
AC
282 $(CC) -c $(srcdir)/../common/sim-fpu.c $(ALL_CFLAGS)
283
284sim-hload.o: $(srcdir)/../common/sim-hload.c $(sim-assert_h) \
285 $(SIM_EXTRA_DEPS)
286 $(CC) -c $(srcdir)/../common/sim-hload.c $(ALL_CFLAGS)
3971886a 287
92f91d1f
AC
288sim-hrw.o: $(srcdir)/../common/sim-hrw.c $(sim-assert_h) \
289 $(SIM_EXTRA_DEPS)
290 $(CC) -c $(srcdir)/../common/sim-hrw.c $(ALL_CFLAGS)
291
a35e91c3
AC
292sim-inline.c: $(srcdir)/../common/sim-inline.c
293 rm -f $@ tmp-$@
294 echo "# 1 \"$(srcdir)/../common/$@\"" > tmp-$@
295 cat $(srcdir)/../common/$@ >> tmp-$@
296 $(srcdir)/../../move-if-change tmp-$@ $@
297
fafce69a 298sim-io.o: $(srcdir)/../common/sim-io.c $(sim_main_headers) $(sim-io_h) \
6808fd61 299 $(SIM_EXTRA_DEPS)
fafce69a 300 $(CC) -c $(srcdir)/../common/sim-io.c $(ALL_CFLAGS)
a35e91c3 301
a34abff8
AC
302sim-memopt.o: $(srcdir)/../common/sim-memopt.c $(sim_main_headers) \
303 $(sim-io_h) $(SIM_EXTRA_DEPS)
304 $(CC) -c $(srcdir)/../common/sim-memopt.c $(ALL_CFLAGS)
305
717dbb29 306sim-module.o: $(srcdir)/../common/sim-module.c $(sim_main_headers) \
c967f187 307 $(sim-io_h) $(SIM_EXTRA_DEPS)
717dbb29
DE
308 $(CC) -c $(srcdir)/../common/sim-module.c $(ALL_CFLAGS)
309
e9b2f579 310sim-options.o: $(srcdir)/../common/sim-options.c $(sim_main_headers) \
c967f187 311 $(sim-options_h) $(sim-io_h) $(SIM_EXTRA_DEPS)
0f2811d1
DE
312 $(CC) -c $(srcdir)/../common/sim-options.c $(ALL_CFLAGS)
313
fafce69a 314sim-reason.o: $(srcdir)/../common/sim-reason.c $(sim_main_headers) \
f03b093c 315 $(SIM_EXTRA_DEPS)
fafce69a 316 $(CC) -c $(srcdir)/../common/sim-reason.c $(ALL_CFLAGS)
f03b093c 317
fafce69a 318sim-resume.o: $(srcdir)/../common/sim-resume.c $(sim_main_headers) \
f03b093c 319 $(SIM_EXTRA_DEPS)
fafce69a 320 $(CC) -c $(srcdir)/../common/sim-resume.c $(ALL_CFLAGS)
f03b093c 321
fafce69a 322sim-run.o: $(srcdir)/../common/sim-run.c $(sim_main_headers) \
f03b093c 323 $(SIM_EXTRA_DEPS)
fafce69a 324 $(CC) -c $(srcdir)/../common/sim-run.c $(ALL_CFLAGS)
f03b093c 325
fafce69a 326sim-stop.o: $(srcdir)/../common/sim-stop.c $(sim_main_headers) \
f03b093c 327 $(SIM_EXTRA_DEPS)
fafce69a 328 $(CC) -c $(srcdir)/../common/sim-stop.c $(ALL_CFLAGS)
f03b093c 329
e9b2f579 330sim-trace.o: $(srcdir)/../common/sim-trace.c $(sim_main_headers) \
c967f187 331 $(sim-options_h) $(sim-io_h) $(SIM_EXTRA_DEPS)
e9b2f579
DE
332 $(CC) -c $(srcdir)/../common/sim-trace.c $(ALL_CFLAGS)
333
717dbb29 334sim-profile.o: $(srcdir)/../common/sim-profile.c $(sim_main_headers) \
c967f187 335 $(sim-options_h) $(sim-io_h) $(SIM_EXTRA_DEPS)
717dbb29
DE
336 $(CC) -c $(srcdir)/../common/sim-profile.c $(ALL_CFLAGS)
337
c967f187
DE
338sim-model.o: $(srcdir)/../common/sim-model.c $(sim_main_headers) \
339 $(sim-io_h) $(SIM_EXTRA_DEPS)
340 $(CC) -c $(srcdir)/../common/sim-model.c $(ALL_CFLAGS)
341
6808fd61 342sim-utils.o: $(srcdir)/../common/sim-utils.c $(sim_main_headers) \
c967f187 343 $(SIM_EXTRA_DEPS)
6808fd61 344 $(CC) -c $(srcdir)/../common/sim-utils.c $(ALL_CFLAGS)
a35e91c3 345
fafce69a
AC
346sim-watch.o: $(srcdir)/../common/sim-watch.c $(sim_main_headers) \
347 $(SIM_EXTRA_DEPS)
348 $(CC) -c $(srcdir)/../common/sim-watch.c $(ALL_CFLAGS)
349
0f2811d1
DE
350sim-load.o: $(srcdir)/../common/sim-load.c
351 $(CC) -c $(srcdir)/../common/sim-load.c $(ALL_CFLAGS)
352
c95d08a8
DE
353nrun.o: $(srcdir)/../common/nrun.c config.h tconfig.h \
354 $(srcroot)/include/callback.h $(sim_main_headers)
355 $(CC) -c $(srcdir)/../common/nrun.c $(ALL_CFLAGS)
a35e91c3 356
c967f187
DE
357# CGEN support.
358
88d5f8e8
DE
359cgen-run.o: $(srcdir)/../common/cgen-run.c $(sim_main_headers) \
360 $(SIM_EXTRA_DEPS)
361 $(CC) -c $(srcdir)/../common/cgen-run.c $(ALL_CFLAGS)
362
c967f187
DE
363cgen-scache.o: $(srcdir)/../common/cgen-scache.c $(sim_main_headers) \
364 $(SIM_EXTRA_DEPS) $(srcdir)/../common/cgen-scache.h
365 $(CC) -c $(srcdir)/../common/cgen-scache.c $(ALL_CFLAGS)
366
367cgen-trace.o: $(srcdir)/../common/cgen-trace.c $(sim_main_headers) \
368 $(SIM_EXTRA_DEPS) $(srcdir)/../common/cgen-trace.h
369 $(CC) -c $(srcdir)/../common/cgen-trace.c $(ALL_CFLAGS)
370
371cgen-utils.o: $(srcdir)/../common/cgen-utils.c $(sim_main_headers) \
3971886a 372 $(SIM_EXTRA_DEPS) mem-ops.h sem-ops.h
c967f187
DE
373 $(CC) -c $(srcdir)/../common/cgen-utils.c $(ALL_CFLAGS)
374
375# Support targets.
376
f2de7dfd
AC
377install: install-common $(SIM_EXTRA_INSTALL)
378
6808fd61
ILT
379install-common: installdirs
380 n=`echo run | sed '$(program_transform_name)'`; \
381 $(INSTALL_PROGRAM) run $(bindir)/$$n
382
383installdirs:
384 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
f2de7dfd
AC
385
386check:
387
388info:
389clean-info:
390install-info:
391
392.NOEXPORT:
393MAKEOVERRIDES=
394
395tags etags: TAGS
396
397TAGS: force
645ab3ec 398 etags --regex '/^\/[*] TAGS: .*/' *.c *.h
f2de7dfd 399
717dbb29 400clean: $(SIM_EXTRA_CLEAN)
f2de7dfd
AC
401 rm -f *.[oa] *~ core
402 rm -f run libsim.a
403 rm -f gentmap targ-map.c targ-vals.h
6808fd61 404 rm -f $(BUILT_SRC_FROM_COMMON)
f2de7dfd 405
717dbb29 406distclean mostlyclean maintainer-clean realclean: clean
f2de7dfd 407 rm -f TAGS
88d5f8e8 408 rm -f Makefile config.cache config.log config.status .gdbinit
f2de7dfd 409 rm -f tconfig.h config.h stamp-h
0f399b0c 410 rm -f targ-vals.def
f2de7dfd
AC
411
412.c.o:
413 $(CC) -c $(ALL_CFLAGS) $<
414
415# Dummy target to force execution of dependent targets.
416force:
417
418Makefile: Makefile.in $(srcdir)/../common/Make-common.in config.status
419 CONFIG_HEADERS= $(SHELL) ./config.status
420
421config.status: configure
422 $(SHELL) ./config.status --recheck
423
424config.h: stamp-h ; @true
425stamp-h: config.in config.status
426 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
427
88d5f8e8
DE
428.gdbinit: config.status $(srcdir)/../common/gdbinit.in
429 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
430
f2de7dfd 431## End COMMON_POST_CONFIG_FRAG
This page took 0.101259 seconds and 4 git commands to generate.