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