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