1# Makefile fragment for common parts of all simulators.
2# Copyright 1997, 1998, 1999, 2000, 2001, 2004, 2005, 2007, 2008, 2009, 2010,
3# 2011 Free Software Foundation, Inc.
4# Contributed by Cygnus Support.
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program.  If not, see <http://www.gnu.org/licenses/>.
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@
40srccom = $(srcdir)/../common
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@
55datarootdir = @datarootdir@
56mandir = @mandir@
57man1dir = $(mandir)/man1
58infodir = @infodir@
59includedir = @includedir@
60
61# This can be referenced by the gettext configuration code.
62top_builddir = ..
63
64EXEEXT = @EXEEXT@
65SHELL = @SHELL@
66
67INSTALL = @INSTALL@
68INSTALL_PROGRAM = @INSTALL_PROGRAM@
69INSTALL_DATA = @INSTALL_DATA@
70
71CC = @CC@
72CC_FOR_BUILD = @CC_FOR_BUILD@
73CFLAGS = @CFLAGS@
74SIM_BSWAP = @sim_bswap@
75SIM_CFLAGS = @sim_cflags@
76SIM_DEBUG = @sim_debug@
77SIM_TRACE = @sim_trace@
78SIM_PROFILE = @sim_profile@
79
80SIM_ASSERT = @sim_assert@
81SIM_ALIGNMENT = @sim_alignment@
82SIM_BITSIZE = @sim_bitsize@
83SIM_DEFAULT_MODEL = @sim_default_model@
84SIM_ENDIAN = @sim_endian@
85SIM_ENVIRONMENT = @sim_environment@
86SIM_FLOAT = @sim_float@
87SIM_HW_CFLAGS = @sim_hw_cflags@
88SIM_HW_OBJS = @sim_hw_objs@
89SIM_HW = @sim_hw@
90SIM_HOSTENDIAN = @sim_hostendian@
91SIM_INLINE = @sim_inline@
92SIM_PACKAGES = @sim_packages@
93SIM_REGPARM = @sim_regparm@
94SIM_RESERVED_BITS = @sim_reserved_bits@
95SIM_SCACHE = @sim_scache@
96SIM_SMP = @sim_smp@
97SIM_STDCALL = @sim_stdcall@
98SIM_XOR_ENDIAN = @sim_xor_endian@
99WARN_CFLAGS = @WARN_CFLAGS@
100WERROR_CFLAGS = @WERROR_CFLAGS@
101SIM_WARN_CFLAGS = $(WARN_CFLAGS)
102SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
103
104HDEFINES = @HDEFINES@
105TDEFINES =
106
107AR = @AR@
108AR_FLAGS = rc
109RANLIB = @RANLIB@
110MAKEINFO = makeinfo
111
112DEP = $(srcroot)/mkdep
113
114# Each simulator's Makefile.in defines one or more of these variables
115# to override our settings as necessary.  There is no need to define these
116# in the simulator's Makefile.in if one is using the default value.  In fact
117# it's preferable not to.
118
119# List of object files, less common parts.
120SIM_OBJS =
121# List of extra dependencies.
122# Generally this consists of simulator specific files included by sim-main.h.
123SIM_EXTRA_DEPS =
124# List of flags to always pass to $(CC).
125SIM_EXTRA_CFLAGS =
126# List of extra libraries to link with.
127SIM_EXTRA_LIBS =
128# List of extra program dependencies.
129SIM_EXTRA_LIBDEPS =
130# List of main object files for `run'.
131SIM_RUN_OBJS = run.o
132# Dependency of `all' to build any extra files.
133SIM_EXTRA_ALL =
134# Dependency of `install' to install any extra files.
135SIM_EXTRA_INSTALL =
136# Dependency of `clean' to clean any extra files.
137SIM_EXTRA_CLEAN =
138# Likewise `distclean'
139SIM_EXTRA_DISTCLEAN =
140
141# Every time a new general purpose source file was added every target's
142# Makefile.in needed to be updated to include the file in SIM_OBJS.
143# This doesn't scale.
144# This variable specifies all the generic stuff common to the newer simulators.
145# Things like sim-reason.o can't go here as the cpu may provide its own
146# (though hopefully in time that won't be so).  Things like sim-bits.o can go
147# here.  Some files are used by all simulators (e.g. callback.o).
148# Those files are specified in LIB_OBJS below.
149
150SIM_COMMON_HW_OBJS = \
151	hw-alloc.o \
152	hw-base.o \
153	hw-device.o \
154	hw-events.o \
155	hw-handles.o \
156	hw-instances.o \
157	hw-ports.o \
158	hw-properties.o \
159	hw-tree.o \
160	sim-hw.o \
161
162SIM_NEW_COMMON_OBJS = \
163	sim-arange.o \
164	sim-bits.o \
165	sim-config.o \
166	sim-core.o \
167	sim-endian.o \
168	sim-events.o \
169	sim-fpu.o \
170	sim-io.o \
171	sim-info.o \
172	sim-load.o \
173	sim-memopt.o \
174	sim-module.o \
175	sim-options.o \
176	sim-profile.o \
177	sim-signal.o \
178	sim-trace.o \
179	sim-utils.o \
180	sim-watch.o \
181	\
182	$(SIM_HW_OBJS) \
183
184# cgen-sim.h and the headers it includes
185CGEN_SIM_DEPS = \
186	$(srccom)/cgen-sim.h \
187	$(srccom)/cgen-defs.h \
188	$(srccom)/cgen-scache.h \
189	$(srccom)/cgen-fpu.h \
190	$(srccom)/cgen-par.h \
191	$(srccom)/cgen-cpu.h \
192	$(srccom)/cgen-trace.h \
193	cpuall.h
194
195# Add this to SIM_EXTRA_DEPS.
196CGEN_INCLUDE_DEPS = \
197	$(CGEN_SIM_DEPS) \
198	$(srccom)/cgen-engine.h \
199	$(srccom)/cgen-types.h \
200	$(srcdir)/../../include/opcode/cgen.h
201
202## End COMMON_PRE_CONFIG_FRAG
203
204## COMMON_POST_CONFIG_FRAG
205
206CONFIG_CFLAGS = \
207	@DEFS@ \
208	$(SIM_CFLAGS) \
209	$(SIM_DEBUG) \
210	$(SIM_DEFAULT_MODEL) \
211	$(SIM_TRACE) \
212	$(SIM_PROFILE) \
213	$(SIM_BSWAP) \
214	$(SIM_ASSERT) \
215	$(SIM_ALIGNMENT) \
216	$(SIM_BITSIZE) \
217	$(SIM_ENDIAN) \
218	$(SIM_ENVIRONMENT) \
219	$(SIM_FLOAT) \
220	$(SIM_HW_CFLAGS) \
221	$(SIM_HOSTENDIAN) \
222	$(SIM_INLINE) \
223	$(SIM_PACKAGES) \
224	$(SIM_REGPARM) \
225	$(SIM_RESERVED_BITS) \
226	$(SIM_SCACHE) \
227	$(SIM_SMP) \
228	$(SIM_STDCALL) \
229	$(SIM_WARN_CFLAGS) \
230	$(SIM_WERROR_CFLAGS) \
231	$(SIM_XOR_ENDIAN) \
232	$(SIM_HARDWARE) \
233	$(SIM_EXTRA_CFLAGS) \
234	$(HDEFINES) $(TDEFINES)
235CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
236  -I../../include -I$(srcroot)/include \
237  -I../../bfd -I$(srcroot)/bfd \
238  -I../../opcodes -I$(srcroot)/opcodes \
239  @INCINTL@
240ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
241BUILD_CFLAGS = -g -O $(CSEARCH)
242
243COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
244
245LIBIBERTY_LIB = ../../libiberty/libiberty.a
246BFD_LIB = ../../bfd/libbfd.a
247OPCODES_LIB = ../../opcodes/libopcodes.a
248LIBINTL = @LIBINTL@
249LIBINTL_DEP = @LIBINTL_DEP@
250CONFIG_LIBS = @LIBS@
251LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) \
252	$(SIM_EXTRA_LIBDEPS)
253EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
254	$(CONFIG_LIBS) $(SIM_EXTRA_LIBS)
255
256LIB_OBJS = callback.o syscall.o targ-map.o version.o $(SIM_OBJS)
257
258RUNTESTFLAGS =
259
260callback_h = $(srcroot)/include/gdb/callback.h
261remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
262
263all: $(SIM_EXTRA_ALL) libsim.a run$(EXEEXT) .gdbinit
264
265libsim.a: $(LIB_OBJS)
266	rm -f libsim.a
267	$(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
268	$(RANLIB) libsim.a
269
270run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
271	$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
272	  $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
273
274run.o: $(srccom)/run.c config.h tconfig.h $(remote_sim_h) $(callback_h)
275	$(CC) -c $(srccom)/run.c $(ALL_CFLAGS)
276
277# FIXME: Ideally, callback.o and friends live in a library outside of
278# both the gdb and simulator source trees (e.g. devo/remote.  Not
279# devo/libremote because this directory would contain more than just
280# a library).
281
282callback.o: $(srccom)/callback.c config.h tconfig.h $(callback_h) targ-vals.h
283	$(CC) -c $(srccom)/callback.c $(ALL_CFLAGS)
284
285syscall.o: $(srccom)/syscall.c config.h tconfig.h $(callback_h) targ-vals.h
286	$(CC) -c $(srccom)/syscall.c $(ALL_CFLAGS)
287
288targ-map.o: targ-map.c targ-vals.h
289
290gentmap: Makefile $(srccom)/gentmap.c targ-vals.def
291	$(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
292
293targ-vals.h targ-map.c: stamp-tvals
294stamp-tvals: gentmap
295	rm -f tmp-tvals.h tmp-tmap.c
296	./gentmap -h >tmp-tvals.h
297	$(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
298	./gentmap -c >tmp-tmap.c
299	$(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
300	touch stamp-tvals
301
302version.c: Makefile ../../gdb/version.in
303	rm -f version.c-tmp version.c
304	echo '#include "version.h"' >> version.c-tmp
305	echo 'const char version[] = "'"`sed q ${srcdir}/../../gdb/version.in`"'";' >> version.c-tmp
306	mv version.c-tmp version.c
307version.o: version.c $(version_h)
308
309
310#
311# Rules for building sim-* components.  Triggered by listing the corresponding
312# .o file in the list of simulator targets.
313#
314
315sim_main_headers = \
316	sim-main.h \
317	$(sim-assert_h) \
318	$(sim-base_h) \
319	$(sim-cpu_h) \
320	$(sim-engine_h) \
321	$(sim-events_h) \
322	$(sim-memopt_h) \
323	$(sim-model_h) \
324	$(sim-module_h) \
325	$(sim-profile_h) \
326	$(sim-trace_h) \
327	$(sim-watch_h) \
328	$(sim-basics_h) \
329	$(SIM_EXTRA_DEPS)
330
331# Exported version of sim_main_headers.
332SIM_MAIN_DEPS = \
333	$(sim_main_headers)
334
335sim-alu_h = $(srccom)/sim-alu.h
336sim-arange_h = $(srccom)/sim-arange.h \
337		$(srccom)/sim-arange.c
338sim-assert_h = $(srccom)/sim-assert.h
339sim-base_h = $(srccom)/sim-base.h \
340		$(sim-module_h) \
341		$(sim-trace_h) \
342		$(sim-core_h) \
343		$(sim-events_h) \
344		$(sim-profile_h) \
345		$(sim-model_h) \
346		$(sim-io_h) \
347		$(sim-engine_h) \
348		$(sim-watch_h) \
349		$(sim-memopt_h) \
350		$(sim-cpu_h)
351sim-basics_h = $(srccom)/sim-basics.h \
352		../common/cconfig.h \
353		tconfig.h \
354		$(sim-config_h) \
355		$(callback_h) \
356		$(sim-inline_h) \
357		$(sim-types_h) \
358		$(sim-bits_h) \
359		$(sim-endian_h) \
360		$(sim-signal_h) \
361		$(sim-arange_h) \
362		$(sim-utils_h)
363sim-bits_h = $(srccom)/sim-bits.h \
364		$(srccom)/sim-bits.c
365sim-config_h = $(srccom)/sim-config.h
366sim-core_h = $(srccom)/sim-core.h
367sim-cpu_h = $(srccom)/sim-cpu.h
368sim-endian_h = $(srccom)/sim-endian.h \
369		$(srccom)/sim-endian.c
370sim-engine_h = $(srccom)/sim-engine.h
371sim-events_h = $(srccom)/sim-events.h
372sim-fpu_h = $(srccom)/sim-fpu.h
373sim-hw_h = $(srccom)/sim-hw.h
374sim-inline_h = $(srccom)/sim-inline.h
375sim-io_h = $(srccom)/sim-io.h
376sim-memopt_h = $(srccom)/sim-memopt.h
377sim-model_h = $(srccom)/sim-model.h
378sim-module_h = $(srccom)/sim-module.h
379sim-n-bits_h = $(srccom)/sim-n-bits.h
380sim-n-core_h = $(srccom)/sim-n-core.h
381sim-n-endian_h = $(srccom)/sim-n-endian.h
382sim-options_h = $(srccom)/sim-options.h
383sim-profile_h = $(srccom)/sim-profile.h
384sim-signal_h = $(srccom)/sim-signal.h
385sim-trace_h = $(srccom)/sim-trace.h
386sim-types_h = $(srccom)/sim-types.h
387sim-utils_h = $(srccom)/sim-utils.h
388sim-watch_h = $(srccom)/sim-watch.h
389
390hw-alloc_h = $(srccom)/hw-alloc.h
391hw-base_h = $(srccom)/hw-base.h
392hw-device_h = $(srccom)/hw-device.h
393hw-events_h = $(srccom)/hw-events.h
394hw-handles_h = $(srccom)/hw-handles.h
395hw-instances_h = $(srccom)/hw-instances.h
396hw-ports_h = $(srccom)/hw-ports.h
397hw-properties_h = $(srccom)/hw-properties.h
398hw-tree_h = $(srccom)/hw-tree.h
399
400hw_main_headers = \
401	$(srccom)/hw-main.h \
402	$(hw-alloc_h) \
403	$(hw-base_h) \
404	$(hw-device_h) \
405	$(hw-events_h) \
406	$(hw-instances_h) \
407	$(hw-handles_h) \
408	$(hw-ports_h) \
409	$(hw-properties_h) \
410
411# FIXME: If this complicated way of building .o files from ../common is
412# necessary, the reason should be documented here.
413
414BUILT_SRC_FROM_COMMON= \
415	sim-inline.c
416
417sim-abort.o: $(srccom)/sim-abort.c \
418	  $(SIM_EXTRA_DEPS)
419	$(CC) -c $(srccom)/sim-abort.c $(ALL_CFLAGS)
420
421sim-arange.o: $(srccom)/sim-arange.c $(sim-arange_h) $(SIM_EXTRA_DEPS)
422	$(CC) -c $(srccom)/sim-arange.c $(ALL_CFLAGS)
423
424sim-bits.o: $(srccom)/sim-bits.c $(sim-bits_h) $(sim-n-bits_h) \
425	  $(SIM_EXTRA_DEPS)
426	$(CC) -c $(srccom)/sim-bits.c $(ALL_CFLAGS)
427
428sim-config.o: $(srccom)/sim-config.c $(sim-config_h) sim-main.h \
429	  $(SIM_EXTRA_DEPS)
430	$(CC) -c $(srccom)/sim-config.c $(ALL_CFLAGS)
431
432sim-core.o: $(srccom)/sim-core.c $(sim_main_headers) \
433	  $(sim-core_h) $(sim-n-core_h)
434	$(CC) -c $(srccom)/sim-core.c $(ALL_CFLAGS)
435
436sim-cpu.o: $(srccom)/sim-cpu.c $(sim_main_headers)
437	$(CC) -c $(srccom)/sim-cpu.c $(ALL_CFLAGS)
438
439sim-endian.o: $(srccom)/sim-endian.c $(sim-endian_h) $(sim-n-endian_h)
440	$(CC) -c $(srccom)/sim-endian.c $(ALL_CFLAGS)
441
442sim-engine.o: $(srccom)/sim-engine.c $(sim_main_headers) $(sim-engine_h)
443	$(CC) -c $(srccom)/sim-engine.c $(ALL_CFLAGS)
444
445sim-events.o: $(srccom)/sim-events.c $(sim-events_h) sim-main.h \
446	  $(SIM_EXTRA_DEPS)
447	$(CC) -c $(srccom)/sim-events.c $(ALL_CFLAGS)
448
449sim-fpu.o: $(srccom)/sim-fpu.c $(sim-fpu_h) \
450	  $(SIM_EXTRA_DEPS)
451	$(CC) -c $(srccom)/sim-fpu.c $(ALL_CFLAGS)
452
453sim-hload.o: $(srccom)/sim-hload.c $(sim-assert_h) $(remote_sim_h) \
454	  $(SIM_EXTRA_DEPS)
455	$(CC) -c $(srccom)/sim-hload.c $(ALL_CFLAGS)
456
457sim-hrw.o: $(srccom)/sim-hrw.c $(sim-assert_h) $(sim_core_h) $(remote_sim_h) \
458	  $(SIM_EXTRA_DEPS)
459	$(CC) -c $(srccom)/sim-hrw.c $(ALL_CFLAGS)
460
461sim-hw.o: $(srccom)/sim-hw.c $(sim_main_headers)
462	$(CC) -c $(srccom)/sim-hw.c $(ALL_CFLAGS)
463
464sim-info.o: $(srccom)/sim-info.c $(sim-assert_h) $(remote_sim_h) \
465	  $(SIM_EXTRA_DEPS)
466	$(CC) -c $(srccom)/sim-info.c $(ALL_CFLAGS)
467
468sim-inline.c: $(srccom)/sim-inline.c
469	rm -f $@ tmp-$@
470	echo "# 1 \"$(srccom)/$@\"" > tmp-$@
471	cat $(srccom)/$@ >> tmp-$@
472	$(SHELL) $(srcdir)/../../move-if-change tmp-$@ $@
473
474sim-io.o: $(srccom)/sim-io.c $(sim_main_headers) $(sim-io_h) $(remote_sim_h) \
475	  targ-vals.h
476	$(CC) -c $(srccom)/sim-io.c $(ALL_CFLAGS)
477
478sim-memopt.o: $(srccom)/sim-memopt.c $(sim_main_headers) \
479	  $(sim-io_h)
480	$(CC) -c $(srccom)/sim-memopt.c $(ALL_CFLAGS)
481
482sim-module.o: $(srccom)/sim-module.c $(sim_main_headers) \
483	  $(sim-io_h)
484	$(CC) -c $(srccom)/sim-module.c $(ALL_CFLAGS)
485
486sim-options.o: $(srccom)/sim-options.c $(sim_main_headers) \
487	  $(sim-options_h) $(sim-io_h)
488	$(CC) -c $(srccom)/sim-options.c $(ALL_CFLAGS)
489
490sim-reason.o: $(srccom)/sim-reason.c $(sim_main_headers) $(remote_sim_h)
491	$(CC) -c $(srccom)/sim-reason.c $(ALL_CFLAGS)
492
493sim-reg.o: $(srccom)/sim-reg.c $(sim_main_headers) $(remote_sim_h)
494	$(CC) -c $(srccom)/sim-reg.c $(ALL_CFLAGS)
495
496sim-resume.o: $(srccom)/sim-resume.c $(sim_main_headers) $(remote_sim_h)
497	$(CC) -c $(srccom)/sim-resume.c $(ALL_CFLAGS)
498
499sim-run.o: $(srccom)/sim-run.c $(sim_main_headers)
500	$(CC) -c $(srccom)/sim-run.c $(ALL_CFLAGS)
501
502sim-signal.o: $(srccom)/sim-signal.c $(sim_main_headers) $(sim-signal_h)
503	$(CC) -c $(srccom)/sim-signal.c $(ALL_CFLAGS)
504
505sim-stop.o: $(srccom)/sim-stop.c $(sim_main_headers)
506	$(CC) -c $(srccom)/sim-stop.c $(ALL_CFLAGS)
507
508sim-trace.o: $(srccom)/sim-trace.c $(sim_main_headers) \
509	  $(sim-options_h) $(sim-io_h)
510	$(CC) -c $(srccom)/sim-trace.c $(ALL_CFLAGS)
511
512sim-profile.o: $(srccom)/sim-profile.c $(sim_main_headers) \
513	  $(sim-options_h) $(sim-io_h)
514	$(CC) -c $(srccom)/sim-profile.c $(ALL_CFLAGS)
515
516sim-model.o: $(srccom)/sim-model.c $(sim_main_headers) \
517	  $(sim-io_h)
518	$(CC) -c $(srccom)/sim-model.c $(ALL_CFLAGS)
519
520sim-utils.o: $(srccom)/sim-utils.c $(sim_main_headers)
521	$(CC) -c $(srccom)/sim-utils.c $(ALL_CFLAGS)
522
523sim-watch.o: $(srccom)/sim-watch.c $(sim_main_headers)
524	$(CC) -c $(srccom)/sim-watch.c $(ALL_CFLAGS)
525
526sim-load.o: $(srccom)/sim-load.c $(callback_h) $(sim-basics_h) $(remote_sim_h)
527	$(CC) -c $(srccom)/sim-load.c $(ALL_CFLAGS)
528
529
530# FIXME This is one very simple-minded way of generating the file hw-config.h
531hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
532	rm -f tmp-hw.h
533	echo "/* generated by Makefile */" > tmp-hw.h
534	for hw in $(SIM_HW) ; do \
535	  echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
536	done >> tmp-hw.h
537	echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
538	for hw in $(SIM_HW) ; do \
539	  echo "  dv_$${hw}_descriptor," ; \
540	done >> tmp-hw.h
541	echo "  NULL," >> tmp-hw.h
542	echo "};" >> tmp-hw.h
543	mv tmp-hw.h hw-config.h
544
545hw-alloc.o: $(srccom)/hw-alloc.c $(hw_main_headers)
546	$(CC) -c $(srccom)/hw-alloc.c $(ALL_CFLAGS)
547
548hw-base.o: $(srccom)/hw-base.c $(hw_main_headers) hw-config.h
549	$(CC) -c $(srccom)/hw-base.c $(ALL_CFLAGS)
550
551hw-device.o: $(srccom)/hw-device.c $(hw_main_headers)
552	$(CC) -c $(srccom)/hw-device.c $(ALL_CFLAGS)
553
554hw-events.o: $(srccom)/hw-events.c $(hw_main_headers) $(sim_main_headers)
555	$(CC) -c $(srccom)/hw-events.c $(ALL_CFLAGS)
556
557test-hw-events: $(srccom)/hw-events.c libsim.a
558	$(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
559		$(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
560
561hw-instances.o: $(srccom)/hw-instances.c $(hw_main_headers)
562	$(CC) -c $(srccom)/hw-instances.c $(ALL_CFLAGS)
563
564hw-handles.o: $(srccom)/hw-handles.c $(hw_main_headers)
565	$(CC) -c $(srccom)/hw-handles.c $(ALL_CFLAGS)
566
567hw-ports.o: $(srccom)/hw-ports.c $(hw_main_headers)
568	$(CC) -c $(srccom)/hw-ports.c $(ALL_CFLAGS)
569
570hw-properties.o: $(srccom)/hw-properties.c $(hw_main_headers)
571	$(CC) -c $(srccom)/hw-properties.c $(ALL_CFLAGS)
572
573hw-tree.o: $(srccom)/hw-tree.c $(hw_main_headers) $(hw-tree_h)
574	$(CC) -c $(srccom)/hw-tree.c $(ALL_CFLAGS)
575
576# Devices.
577
578dv-cfi.o: $(srccom)/dv-cfi.c $(hw_main_headers) $(sim_main_headers)
579	$(CC) -c $(srccom)/dv-cfi.c $(ALL_CFLAGS)
580
581dv-core.o: $(srccom)/dv-core.c $(hw_main_headers) $(sim_main_headers)
582	$(CC) -c $(srccom)/dv-core.c $(ALL_CFLAGS)
583
584dv-glue.o: $(srccom)/dv-glue.c $(hw_main_headers) $(sim_main_headers)
585	$(CC) -c $(srccom)/dv-glue.c $(ALL_CFLAGS)
586
587dv-pal.o: $(srccom)/dv-pal.c $(hw_main_headers) $(sim_main_headers)
588	$(CC) -c $(srccom)/dv-pal.c $(ALL_CFLAGS)
589
590dv-sockser.o: $(srccom)/dv-sockser.h $(sim_main_headers)
591	$(CC) -c $(srccom)/dv-sockser.c $(ALL_CFLAGS)
592
593
594nrun.o: $(srccom)/nrun.c config.h tconfig.h $(remote_sim_h) $(callback_h) \
595	  $(sim_main_headers)
596	$(CC) -c $(srccom)/nrun.c $(ALL_CFLAGS)
597
598# CGEN support.
599
600# For use in Makefile.in for cpu-specific files.
601CGEN_MAIN_CPU_DEPS = \
602	$(SIM_MAIN_DEPS) \
603	$(srccom)/cgen-ops.h \
604	$(srccom)/cgen-mem.h
605
606cgen-run.o: $(srccom)/cgen-run.c $(sim_main_headers)
607	$(CC) -c $(srccom)/cgen-run.c $(ALL_CFLAGS)
608
609cgen-scache.o: $(srccom)/cgen-scache.c $(sim_main_headers)
610	$(CC) -c $(srccom)/cgen-scache.c $(ALL_CFLAGS)
611
612cgen-trace.o: $(srccom)/cgen-trace.c $(sim_main_headers)
613	$(CC) -c $(srccom)/cgen-trace.c $(ALL_CFLAGS)
614
615cgen-fpu.o: $(srccom)/cgen-fpu.c $(sim_main_headers) $(sim-fpu_h)
616	$(CC) -c $(srccom)/cgen-fpu.c $(ALL_CFLAGS)
617
618cgen-accfp.o: $(srccom)/cgen-accfp.c $(sim_main_headers) $(sim-fpu_h)
619	$(CC) -c $(srccom)/cgen-accfp.c $(ALL_CFLAGS)
620
621cgen-utils.o: $(srccom)/cgen-utils.c $(sim_main_headers) \
622	  $(srccom)/cgen-mem.h $(srccom)/cgen-ops.h $(srccom)/cgen-engine.h
623	$(CC) -c $(srccom)/cgen-utils.c $(ALL_CFLAGS)
624
625cgen-par.o: $(srccom)/cgen-par.c $(sim_main_headers) \
626	  $(srccom)/cgen-mem.h $(srccom)/cgen-par.h
627	$(CC) -c $(srccom)/cgen-par.c $(ALL_CFLAGS)
628
629# Support targets.
630
631install: install-common $(SIM_EXTRA_INSTALL)
632
633install-common: installdirs
634	n=`echo run | sed '$(program_transform_name)'`; \
635	$(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
636	n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
637	$(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
638	( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
639
640installdirs:
641	$(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
642	$(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
643
644check:
645	cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
646
647info:
648clean-info:
649install-info:
650
651.NOEXPORT:
652MAKEOVERRIDES=
653
654tags etags: TAGS
655
656# Macros like EXTERN_SIM_CORE confuse tags.
657# And the sim-n-foo.h files create functions that can't be found either.
658TAGS: force
659	cd $(srcdir) && \
660	etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
661		*.[ch] ../common/*.[ch]
662
663clean: $(SIM_EXTRA_CLEAN)
664	rm -f *.[oa] *~ core
665	rm -f run$(EXEEXT) libsim.a
666	rm -f gentmap targ-map.c targ-vals.h stamp-tvals
667	if [ ! -f Make-common.in ] ; then \
668		rm -f $(BUILT_SRC_FROM_COMMON) ; \
669	fi
670	rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
671
672distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
673	rm -f TAGS
674	rm -f Makefile config.cache config.log config.status .gdbinit
675	rm -f tconfig.h config.h stamp-h
676	rm -f targ-vals.def
677
678.c.o:
679	$(CC) -c $(ALL_CFLAGS) $<
680
681# Dummy target to force execution of dependent targets.
682force:
683
684Makefile: Makefile.in $(srccom)/Make-common.in config.status
685	CONFIG_HEADERS= $(SHELL) ./config.status
686
687config.status: configure
688	$(SHELL) ./config.status --recheck
689
690config.h: stamp-h ; @true
691stamp-h: config.in config.status
692	CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
693
694.gdbinit: # config.status $(srccom)/gdbinit.in
695	CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
696
697
698# CGEN support
699
700CGENDIR = @cgendir@
701CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
702CGENFLAGS = -v
703CGEN_CPU_DIR = $(CGENDIR)/cpu
704
705# Most ports use the files here instead of cgen/cpu.
706CPU_DIR = $(srcroot)/cpu
707
708CGEN_READ_SCM = $(CGENDIR)/sim.scm
709CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
710CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
711CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
712CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
713
714# Various choices for which cpu specific files to generate.
715# These are passed to cgen.sh in the "extrafiles" argument.
716CGEN_CPU_EXTR = /extr/
717CGEN_CPU_READ = /read/
718CGEN_CPU_WRITE = /write/
719CGEN_CPU_SEM = /sem/
720CGEN_CPU_SEMSW = /semsw/
721
722CGEN_FLAGS_TO_PASS = \
723	CGEN='$(CGEN)' \
724	CGENFLAGS="$(CGENFLAGS)"
725
726# We store the generated files in the source directory until we decide to
727# ship a Scheme interpreter with gdb/binutils.  Maybe we never will.
728
729cgen-arch: force
730	$(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
731		$(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
732		$(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored \
733		$(archfile) ignored
734
735cgen-cpu: force
736	$(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
737		$(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
738		$(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
739		$(archfile) "$(EXTRAFILES)"
740
741cgen-defs: force
742	$(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
743		$(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
744		$(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
745		$(archfile) ignored
746
747cgen-decode: force
748	$(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
749		$(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
750		$(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
751		$(archfile) "$(EXTRAFILES)"
752
753cgen-cpu-decode: force
754	$(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
755		$(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
756		$(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
757		$(archfile) "$(EXTRAFILES)"
758
759cgen-desc: force
760	$(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
761		$(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
762		$(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
763		$(archfile) ignored $(opcfile)
764
765## End COMMON_POST_CONFIG_FRAG
766