* interp.c (DECLARE_OPTION_HANDLER): Use it.
[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@
38377b3a 40srccom = $(srcdir)/../common
f2de7dfd
AC
41srcroot = $(srcdir)/../..
42
43prefix = @prefix@
44exec_prefix = @exec_prefix@
45
46host_alias = @host_alias@
47target_alias = @target_alias@
48program_transform_name = @program_transform_name@
49bindir = @bindir@
50
51libdir = @libdir@
52tooldir = $(libdir)/$(target_alias)
53
54datadir = @datadir@
55mandir = @mandir@
56man1dir = $(mandir)/man1
57infodir = @infodir@
58includedir = @includedir@
59
60SHELL = /bin/sh
61
6808fd61 62INSTALL = @INSTALL@
f2de7dfd
AC
63INSTALL_PROGRAM = @INSTALL_PROGRAM@
64INSTALL_DATA = @INSTALL_DATA@
f2de7dfd
AC
65
66CC = @CC@
67CC_FOR_BUILD = @CC_FOR_BUILD@
68CFLAGS = @CFLAGS@
69SIM_BSWAP = @sim_bswap@
70SIM_CFLAGS = @sim_cflags@
71SIM_DEBUG = @sim_debug@
f2de7dfd 72SIM_TRACE = @sim_trace@
717dbb29 73SIM_PROFILE = @sim_profile@
a77aa7ec 74
92f91d1f
AC
75SIM_ASSERT = @sim_assert@
76SIM_ALIGNMENT = @sim_alignment@
7456a10d 77SIM_BITSIZE = @sim_bitsize@
4141b1c6 78SIM_DEFAULT_MODEL = @sim_default_model@
92f91d1f 79SIM_ENDIAN = @sim_endian@
22469a10 80SIM_ENVIRONMENT = @sim_environment@
92f91d1f
AC
81SIM_FLOAT = @sim_float@
82SIM_HARDWARE = @sim_hardware@
83SIM_HOSTENDIAN = @sim_hostendian@
84SIM_INLINE = @sim_inline@
85SIM_PACKAGES = @sim_packages@
86SIM_REGPARM = @sim_regparm@
87SIM_RESERVED_BITS = @sim_reserved_bits@
4141b1c6 88SIM_SCACHE = @sim_scache@
92f91d1f
AC
89SIM_SMP = @sim_smp@
90SIM_STDCALL = @sim_stdcall@
91SIM_WARNINGS = @sim_warnings@
92SIM_XOR_ENDIAN = @sim_xor_endian@
93
f2de7dfd
AC
94HDEFINES = @HDEFINES@
95TDEFINES =
96
97AR = @AR@
98AR_FLAGS = rc
99RANLIB = @RANLIB@
100MAKEINFO = makeinfo
101
f7abc1ca
DE
102DEP = $(srcroot)/mkdep
103
f2de7dfd 104# Each simulator's Makefile.in defines one or more of these variables
0f2811d1
DE
105# to override our settings as necessary. There is no need to define these
106# in the simulator's Makefile.in if one is using the default value. In fact
107# it's preferable not to.
f2de7dfd
AC
108
109# List of object files, less common parts.
110SIM_OBJS =
6808fd61
ILT
111# List of extra dependencies.
112# Generally this consists of simulator specific files included by sim-main.h.
113SIM_EXTRA_DEPS =
f2de7dfd
AC
114# List of flags to always pass to $(CC).
115SIM_EXTRA_CFLAGS =
116# List of extra libraries to link with.
117SIM_EXTRA_LIBS =
118# List of extra program dependencies.
119SIM_EXTRA_LIBDEPS =
120# List of main object files for `run'.
121SIM_RUN_OBJS = run.o
122# Dependency of `all' to build any extra files.
123SIM_EXTRA_ALL =
124# Dependency of `install' to install any extra files.
125SIM_EXTRA_INSTALL =
126# Dependency of `clean' to clean any extra files.
127SIM_EXTRA_CLEAN =
128
e5ce1670
DE
129# Every time a new general purpose source file was added every target's
130# Makefile.in needed to be updated to include the file in SIM_OBJS.
131# This doesn't scale.
132# This variable specifies all the generic stuff common to the newer simulators.
133# Things like sim-reason.o can't go here as the cpu may provide its own
134# (though hopefully in time that won't be so). Things like sim-bits.o can go
135# here. Some files are used by all simulators (e.g. callback.o).
136# Those files are specified in LIB_OBJS below.
137
138SIM_NEW_COMMON_OBJS = \
139 sim-bits.o \
140 sim-break.o \
141 sim-config.o \
142 sim-core.o \
143 sim-endian.o \
144 sim-events.o \
145 sim-fpu.o \
146 sim-io.o \
147 sim-load.o \
148 sim-memopt.o \
149 sim-module.o \
150 sim-options.o \
151 sim-profile.o \
1ebc7e0e 152 sim-signal.o \
e5ce1670
DE
153 sim-trace.o \
154 sim-utils.o \
155 sim-watch.o
156
f2de7dfd
AC
157## End COMMON_PRE_CONFIG_FRAG
158
159## COMMON_POST_CONFIG_FRAG
160
92f91d1f
AC
161CONFIG_CFLAGS = @DEFS@ \
162 $(SIM_CFLAGS) \
163 $(SIM_DEBUG) \
4141b1c6 164 $(SIM_DEFAULT_MODEL) \
92f91d1f
AC
165 $(SIM_TRACE) \
166 $(SIM_PROFILE) \
167 $(SIM_BSWAP) \
168 $(SIM_ASSERT) \
169 $(SIM_ALIGNMENT) \
7456a10d 170 $(SIM_BITSIZE) \
92f91d1f 171 $(SIM_ENDIAN) \
22469a10 172 $(SIM_ENVIRONMENT) \
92f91d1f
AC
173 $(SIM_FLOAT) \
174 $(SIM_HARDWARE) \
175 $(SIM_HOSTENDIAN) \
176 $(SIM_INLINE) \
177 $(SIM_PACKAGES) \
178 $(SIM_REGPARM) \
179 $(SIM_RESERVED_BITS) \
4141b1c6 180 $(SIM_SCACHE) \
92f91d1f
AC
181 $(SIM_SMP) \
182 $(SIM_STDCALL) \
183 $(SIM_WARNINGS) \
184 $(SIM_XOR_ENDIAN) \
185 $(SIM_EXTRA_CFLAGS) \
186 $(HDEFINES) $(TDEFINES)
38377b3a 187CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
f2de7dfd 188 -I../../include -I$(srcroot)/include \
a77aa7ec 189 -I../../bfd -I$(srcroot)/bfd \
f2de7dfd
AC
190 -I../../opcodes -I$(srcroot)/opcodes
191ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
192BUILD_CFLAGS = -g -O $(CSEARCH)
193
f7abc1ca
DE
194COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
195
f2de7dfd
AC
196LIBIBERTY_LIB = ../../libiberty/libiberty.a
197BFD_LIB = ../../bfd/libbfd.a
198OPCODES_LIB = ../../opcodes/libopcodes.a
199CONFIG_LIBS = @LIBS@
200LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \
201 $(SIM_EXTRA_LIBDEPS)
202EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \
203 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
204
f7abc1ca 205LIB_OBJS = callback.o syscall.o targ-map.o $(SIM_OBJS)
f2de7dfd 206
22469a10 207all: $(SIM_EXTRA_ALL) libsim.a run .gdbinit
f2de7dfd
AC
208
209libsim.a: $(LIB_OBJS)
210 rm -f libsim.a
fafce69a 211 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
f2de7dfd
AC
212 $(RANLIB) libsim.a
213
214run: $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
215 $(CC) $(ALL_CFLAGS) -o run \
216 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
217
38377b3a 218run.o: $(srccom)/run.c config.h tconfig.h \
22469a10 219 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h
38377b3a 220 $(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
f2de7dfd
AC
221
222# FIXME: Ideally, callback.o and friends live in a library outside of
223# both the gdb and simulator source trees (e.g. devo/remote. Not
224# devo/libremote because this directory would contain more than just
225# a library).
226
38377b3a 227callback.o: $(srccom)/callback.c config.h tconfig.h \
f2de7dfd 228 $(srcroot)/include/callback.h targ-vals.h
38377b3a 229 $(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
f2de7dfd 230
38377b3a 231syscall.o: $(srccom)/syscall.c config.h tconfig.h \
f7abc1ca 232 $(srcroot)/include/callback.h targ-vals.h
38377b3a 233 $(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
f7abc1ca 234
f2de7dfd
AC
235targ-map.o: targ-map.c targ-vals.h
236
38377b3a
DE
237gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
238 $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
f2de7dfd 239
6cd37f15
DE
240targ-vals.h targ-map.c: stamp-tvals
241stamp-tvals: gentmap
242 rm -f tmp-tvals.h tmp-tmap.c
243 ./gentmap -h >tmp-tvals.h
244 $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
245 ./gentmap -c >tmp-tmap.c
246 $(srcroot)/move-if-change tmp-tmap.c targ-map.c
247 touch stamp-tvals
a35e91c3
AC
248
249#
250# Rules for building sim-* components. Triggered by listing the corresponding
251# .o file in the list of simulator targets.
252#
253
6808fd61
ILT
254sim_main_headers = \
255 sim-main.h \
38377b3a
DE
256 $(srccom)/sim-config.h \
257 $(srccom)/sim-base.h \
258 $(srccom)/sim-basics.h \
aaa11abe 259 $(srccom)/sim-signal.h \
38377b3a
DE
260 $(srccom)/sim-memopt.h \
261 $(srccom)/sim-model.h \
262 $(srccom)/sim-module.h \
263 $(srccom)/sim-trace.h \
264 $(srccom)/sim-profile.h \
265 $(srccom)/sim-engine.h \
266 $(srccom)/sim-events.h \
267 $(srccom)/sim-watch.h \
268 $(srccom)/sim-assert.h \
f7abc1ca
DE
269 tconfig.h \
270 $(SIM_EXTRA_DEPS)
6808fd61 271
38377b3a
DE
272sim-assert_h = $(srccom)/sim-assert.h
273sim-endian_h = $(srccom)/sim-endian.h
274sim-n-endian_h = $(srccom)/sim-n-endian.h
275sim-bits_h = $(srccom)/sim-bits.h
276sim-config_h = $(srccom)/sim-config.h
277sim-n-bits_h = $(srccom)/sim-n-bits.h
278sim-core_h = $(srccom)/sim-core.h
279sim-n-core_h = $(srccom)/sim-n-core.h
280sim-engine_h = $(srccom)/sim-engine.h
281sim-events_h = $(srccom)/sim-events.h
282sim-fpu_h = $(srccom)/sim-fpu.h
283sim-io_h = $(srccom)/sim-io.h
284sim-options_h = $(srccom)/sim-options.h
285sim-break_h = $(srccom)/sim-break.h
1ebc7e0e 286sim-signal_h = $(srccom)/sim-signal.h
a35e91c3 287
6808fd61 288# FIXME: If this complicated way of building .o files from ../common is
c967f187 289# necessary, the reason should be documented here.
6808fd61
ILT
290
291BUILT_SRC_FROM_COMMON= \
5dcf955d 292 sim-inline.c
6808fd61 293
38377b3a 294sim-abort.o: $(srccom)/sim-abort.c \
f7abc1ca 295 $(SIM_EXTRA_DEPS)
38377b3a 296 $(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
f03b093c 297
38377b3a 298sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
f7abc1ca 299 $(SIM_EXTRA_DEPS)
38377b3a 300 $(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
a35e91c3 301
38377b3a 302sim-config.o: $(srccom)/sim-config.c $(sim-config_h) \
189e2694 303 $(SIM_EXTRA_DEPS)
38377b3a 304 $(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
a35e91c3 305
189e2694
DE
306sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
307 $(sim-core_h) $(sim-n-core_h) \
f7abc1ca 308 $(SIM_EXTRA_DEPS)
38377b3a 309 $(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
a35e91c3 310
38377b3a 311sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h) \
f7abc1ca 312 $(SIM_EXTRA_DEPS)
38377b3a 313 $(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
a35e91c3 314
38377b3a
DE
315sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
316 $(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
f03b093c 317
38377b3a 318sim-events.o: $(srccom)/sim-events.c $(sim-events_h) \
f7abc1ca 319 $(SIM_EXTRA_DEPS)
38377b3a 320 $(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
a35e91c3 321
38377b3a 322sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
f7abc1ca 323 $(SIM_EXTRA_DEPS)
38377b3a 324 $(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
fafce69a 325
38377b3a 326sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) \
22469a10 327 $(srcroot)/include/remote-sim.h \
f7abc1ca 328 $(SIM_EXTRA_DEPS)
38377b3a 329 $(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
3971886a 330
22469a10
DE
331sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) \
332 $(srcroot)/include/remote-sim.h \
f7abc1ca 333 $(SIM_EXTRA_DEPS)
38377b3a 334 $(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
92f91d1f 335
38377b3a 336sim-inline.c: $(srccom)/sim-inline.c
a35e91c3 337 rm -f $@ tmp-$@
38377b3a
DE
338 echo "# 1 \"$(srccom)/$@\"" > tmp-$@
339 cat $(srccom)/$@ >> tmp-$@
a35e91c3
AC
340 $(srcdir)/../../move-if-change tmp-$@ $@
341
22469a10
DE
342sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) \
343 $(srcroot)/include/remote-sim.h
38377b3a 344 $(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
a35e91c3 345
38377b3a 346sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
f7abc1ca 347 $(sim-io_h)
38377b3a 348 $(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
a34abff8 349
38377b3a 350sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
f7abc1ca 351 $(sim-io_h)
38377b3a 352 $(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
717dbb29 353
38377b3a 354sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
f7abc1ca 355 $(sim-options_h) $(sim-io_h)
38377b3a 356 $(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
0f2811d1 357
22469a10
DE
358sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) \
359 $(srcroot)/include/remote-sim.h
38377b3a 360 $(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
f03b093c 361
22469a10
DE
362sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) \
363 $(srcroot)/include/remote-sim.h
38377b3a 364 $(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
f03b093c 365
38377b3a
DE
366sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
367 $(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
f03b093c 368
1ebc7e0e
DE
369sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
370 $(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
371
38377b3a
DE
372sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
373 $(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
f03b093c 374
38377b3a 375sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
f7abc1ca 376 $(sim-options_h) $(sim-io_h)
38377b3a 377 $(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
e9b2f579 378
38377b3a 379sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
f7abc1ca 380 $(sim-options_h) $(sim-io_h)
38377b3a 381 $(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
717dbb29 382
38377b3a 383sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
f7abc1ca 384 $(sim-io_h)
38377b3a 385 $(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
c967f187 386
38377b3a
DE
387sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
388 $(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
a35e91c3 389
38377b3a
DE
390sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
391 $(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
fafce69a 392
38377b3a
DE
393sim-load.o: $(srccom)/sim-load.c $(srcroot)/include/callback.h
394 $(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
0f2811d1 395
38377b3a 396sim-break.o: $(srccom)/sim-break.c $(sim_main_headers) \
f7abc1ca 397 $(sim_break_h)
38377b3a 398 $(CC) -c $(srccom)/sim-break.c $(ALL_CFLAGS)
b9d580a4 399
38377b3a 400nrun.o: $(srccom)/nrun.c config.h tconfig.h \
22469a10
DE
401 $(srcroot)/include/remote-sim.h $(srcroot)/include/callback.h \
402 $(sim_main_headers)
38377b3a 403 $(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
a35e91c3 404
c967f187
DE
405# CGEN support.
406
38377b3a 407cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers) \
4a44afd5 408 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h
38377b3a 409 $(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
88d5f8e8 410
4a44afd5 411cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
38377b3a 412 $(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
c967f187 413
38377b3a
DE
414cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers) \
415 $(srccom)/cgen-trace.h
416 $(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
c967f187 417
38377b3a
DE
418cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
419 $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h
420 $(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
c967f187
DE
421
422# Support targets.
423
f2de7dfd
AC
424install: install-common $(SIM_EXTRA_INSTALL)
425
6808fd61
ILT
426install-common: installdirs
427 n=`echo run | sed '$(program_transform_name)'`; \
428 $(INSTALL_PROGRAM) run $(bindir)/$$n
429
430installdirs:
431 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
f2de7dfd
AC
432
433check:
6cd37f15 434 cd ../testsuite && $(MAKE) check
f2de7dfd
AC
435
436info:
437clean-info:
438install-info:
439
440.NOEXPORT:
441MAKEOVERRIDES=
442
443tags etags: TAGS
444
445TAGS: force
645ab3ec 446 etags --regex '/^\/[*] TAGS: .*/' *.c *.h
f2de7dfd 447
717dbb29 448clean: $(SIM_EXTRA_CLEAN)
f2de7dfd
AC
449 rm -f *.[oa] *~ core
450 rm -f run libsim.a
6cd37f15 451 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
f7abc1ca 452 if [ ! -f Make-common.in ] ; then \
5dcf955d
DE
453 rm -f $(BUILT_SRC_FROM_COMMON) ; \
454 fi
f2de7dfd 455
717dbb29 456distclean mostlyclean maintainer-clean realclean: clean
f2de7dfd 457 rm -f TAGS
88d5f8e8 458 rm -f Makefile config.cache config.log config.status .gdbinit
f2de7dfd 459 rm -f tconfig.h config.h stamp-h
0f399b0c 460 rm -f targ-vals.def
f2de7dfd
AC
461
462.c.o:
463 $(CC) -c $(ALL_CFLAGS) $<
464
465# Dummy target to force execution of dependent targets.
466force:
467
38377b3a 468Makefile: Makefile.in $(srccom)/Make-common.in config.status
f2de7dfd
AC
469 CONFIG_HEADERS= $(SHELL) ./config.status
470
471config.status: configure
472 $(SHELL) ./config.status --recheck
473
474config.h: stamp-h ; @true
475stamp-h: config.in config.status
476 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
477
38377b3a 478.gdbinit: # config.status $(srccom)/gdbinit.in
88d5f8e8
DE
479 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
480
36de6f40
DE
481# start-sanitize-cygnus
482
189e2694
DE
483# CGEN support
484
485SCHEME = @SCHEME@
189e2694
DE
486SCHEMEFLAGS = -s
487srccgen = $(srcroot)/cgen
488
489CGEN_VERBOSE = -v
6cd37f15
DE
490CGEN_MAIN_SCM = $(srccgen)/object.scm $(srccgen)/utils.scm \
491 $(srccgen)/attr.scm $(srccgen)/enum.scm $(srccgen)/types.scm \
492 $(srccgen)/utils-cgen.scm $(srccgen)/cpu.scm \
493 $(srccgen)/mode.scm $(srccgen)/mach.scm \
494 $(srccgen)/model.scm $(srccgen)/hardware.scm \
189e2694
DE
495 $(srccgen)/ifield.scm $(srccgen)/iformat.scm \
496 $(srccgen)/operand.scm $(srccgen)/insn.scm \
6cd37f15
DE
497 $(srccgen)/cdl-c.scm $(srccgen)/sim.scm
498CGEN_CPU_SCM = $(srccgen)/sim-cpu.scm $(srccgen)/sim-model.scm
499CGEN_DECODE_SCM = $(srccgen)/sim-decode.scm
189e2694
DE
500
501# Various choices for which cpu specific files to generate.
502CGEN_CPU_EXTR = -E tmp-ext.c1
503CGEN_CPU_READ = -R tmp-read.c1
504CGEN_CPU_SEM = -S tmp-sem.c1
505CGEN_CPU_SEMSW = -W tmp-semsw.c1
506
507# We store the generated files in the source directory until we decide to
508# ship a Scheme interpreter with gdb/binutils. Maybe we never will.
509
510cgen-arch: force
511 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
512 $(SCHEME) $(SCHEMEFLAGS) \
513 $(srccgen) $(CGEN_VERBOSE) \
514 $(arch) "$(FLAGS)" ignored ignored ignored ignored
515
516cgen-cpu: force
517 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
518 $(SCHEME) $(SCHEMEFLAGS) \
519 $(srccgen) $(CGEN_VERBOSE) \
520 $(arch) "$(FLAGS)" $(cpu) $(mach) "$(SUFFIX)" "$(EXTRAFILES)"
521
522cgen-decode: force
523 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
524 $(SCHEME) $(SCHEMEFLAGS) \
525 $(srccgen) $(CGEN_VERBOSE) \
526 $(arch) "$(FLAGS)" $(cpu) $(mach) "$(SUFFIX)" ignored
527
36de6f40
DE
528# end-sanitize-cygnus
529
f2de7dfd 530## End COMMON_POST_CONFIG_FRAG
This page took 0.07627 seconds and 4 git commands to generate.