1#
2#   This file is part of the program psim.
3#
4#   Copyright 1994, 1995, 1996, 1997, 2003 Andrew Cagney
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
20default: all
21
22VPATH = @srcdir@
23srcdir = @srcdir@
24srccom = $(srcdir)/../common
25srcroot = $(srcdir)/../..
26srcsim = $(srcdir)/..
27
28prefix = @prefix@
29exec_prefix = @exec_prefix@
30
31host_alias = @host_alias@
32target_alias = @target_alias@
33program_transform_name = @program_transform_name@
34bindir = @bindir@
35libdir = @libdir@
36tooldir = $(libdir)/$(target_alias)
37
38datarootdir = @datarootdir@
39datadir = @datadir@
40mandir = @mandir@
41man1dir = $(mandir)/man1
42man2dir = $(mandir)/man2
43man3dir = $(mandir)/man3
44man4dir = $(mandir)/man4
45man5dir = $(mandir)/man5
46man6dir = $(mandir)/man6
47man7dir = $(mandir)/man7
48man8dir = $(mandir)/man8
49man9dir = $(mandir)/man9
50infodir = @infodir@
51includedir = @includedir@
52
53# This can be referenced by the gettext configuration code.
54top_builddir = ..
55
56EXEEXT = @EXEEXT@
57SHELL = /bin/sh
58
59INSTALL = @INSTALL@
60INSTALL_PROGRAM = @INSTALL_PROGRAM@
61INSTALL_DATA = @INSTALL_DATA@
62
63AR = @AR@
64AR_FLAGS = rc
65CC = @CC@
66CFLAGS = @CFLAGS@
67CC_FOR_BUILD = @CC_FOR_BUILD@
68CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
69BISON = bison
70MAKEINFO = makeinfo
71RANLIB = @RANLIB@
72
73INLINE_CFLAGS = @sim_inline@
74ENDIAN_CFLAGS = @sim_endian@
75HOSTENDIAN_CFLAGS = @sim_hostendian@
76SMP_CFLAGS = @sim_smp@
77XOR_ENDIAN_CFLAGS = @sim_xor_endian@
78BITSIZE_CFLAGS = @sim_bitsize@
79HOSTBITSIZE_CFLAGS = @sim_hostbitsize@
80TIMEBASE_CFLAGS = @sim_timebase@
81ALIGNMENT_CFLAGS = @sim_alignment@
82FLOAT_CFLAGS = @sim_float@
83RESERVED_CFLAGS = @sim_reserved@
84MONITOR_CFLAGS = @sim_monitor@
85MODEL_CFLAGS = @sim_model@ @sim_default_model@ @sim_model_issue@
86TERMIO_CFLAGS = @sim_termio@
87WARNING_CFLAGS = @sim_warnings@
88DEVZERO_CFLAGS = @sim_devzero@
89CONFIG_CFLAGS = \
90  $(ENDIAN_CFLAGS) \
91  $(HOSTENDIAN_CFLAGS) \
92  $(SMP_CFLAGS) \
93  $(XOR_ENDIAN_CFLAGS) \
94  $(BITSIZE_CFLAGS) \
95  $(HOSTBITSIZE_CFLAGS) \
96  $(TIMEBASE_CFLAGS) \
97  $(ALIGNMENT_CFLAGS) \
98  $(FLOAT_CFLAGS) \
99  $(RESERVED_CFLAGS) \
100  $(MONITOR_CFLAGS) \
101  $(MODEL_CFLAGS) \
102  $(TERMIO_CFLAGS) \
103  $(DEVZERO_CFLAGS)
104SIM_FPU_CFLAGS = @sim_fpu_cflags@
105
106STD_CFLAGS	= $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARNING_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $(INTL_CFLAGS) $(SIM_FPU_CFLAGS)
107NOWARN_CFLAGS	= $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES)  $(SIM_FPU_CFLAGS)
108BUILD_CFLAGS	= $(CFLAGS_FOR_BUILD) $(INCLUDES) $(WARNING_CFLAGS)
109
110BUILD_LDFLAGS	=
111LIBS = @LIBS@
112
113CONFIG_FILE = @sim_config@
114IGEN_OPCODE_RULES = @sim_opcode@
115IGEN_DECODE_MECHANISM = @sim_decode_mechanism@
116IGEN_DUPLICATE = @sim_dup@
117IGEN_JUMP = @sim_jump@
118IGEN_FILTER = @sim_filter@
119IGEN_ICACHE = @sim_icache@
120IGEN_SMP = @sim_igen_smp@
121IGEN_LINE_NR = @sim_line_nr@
122DGEN_FLAGS = @sim_switch@
123
124HDEFINES = @HDEFINES@
125TDEFINES =
126IGEN_FLAGS = \
127	$(IGEN_DECODE_MECHANISM) \
128	$(IGEN_DUPLICATE) \
129	$(IGEN_JUMP) \
130	$(IGEN_FILTER) \
131	$(IGEN_ICACHE) \
132	$(IGEN_SMP) \
133	$(IGEN_LINE_NR)
134
135.NOEXPORT:
136MAKEOVERRIDES=
137
138LIB_INCLUDES	= -I$(srcdir)/../../include
139BFD_INCLUDES	= -I../../bfd -I$(srcdir)/../../bfd
140GDB_INCLUDES	= -I../../gdb -I$(srcdir)/../../gdb  -I$(srcdir)/../../gdb/config
141
142INCLUDES	= -I. -I$(srcdir) $(LIB_INCLUDES) $(BFD_INCLUDES) $(GDB_INCLUDES)
143
144LIBIBERTY_LIB	= ../../libiberty/libiberty.a
145BFD_LIB		= ../../bfd/libbfd.a
146ZLIB		= @zlibdir@ -lz
147
148LIBINTL = @LIBINTL@
149LIBINTL_DEP = @LIBINTL_DEP@
150INTL_CFLAGS = @INCINTL@
151
152
153TARGETLIB	= libsim.a
154
155all:	run $(TARGETLIB) $(GDB_OBJ)
156
157.c.o:
158	$(CC) -c $(STD_CFLAGS) $<
159
160
161# Headers outside sim/ppc.
162ANSIDECL_H = $(srcroot)/include/ansidecl.h
163BFD_H = ../../bfd/bfd.h
164GDB_CALLBACK_H = $(srcroot)/include/gdb/callback.h
165GDB_REMOTE_SIM_H = $(srcroot)/include/gdb/remote-sim.h
166GDB_SIM_PPC_H = $(srcroot)/include/gdb/sim-ppc.h
167COMMON_SIM_BASE_H = $(srcroot)/sim/common/sim-base.h
168COMMON_SIM_BASICS_H = $(srcroot)/sim/common/sim-basics.h
169COMMON_SIM_FPU_H = $(srcroot)/sim/common/sim-fpu.h
170COMMON_SIM_INLINE_H = $(srcroot)/sim/common/sim-inline.h
171COMMON_SIM_SIGNAL_H = $(srcroot)/sim/common/sim-signal.h
172
173# Headers in sim/ppc.
174ACCONFIG_H = \
175	acconfig.h
176
177ALTIVEC_EXPRESSION_H = \
178	altivec_expression.h
179
180ALTIVEC_REGISTERS_H = \
181	altivec_registers.h
182
183BASICS_H = \
184	basics.h \
185	$(CONFIG_H) \
186	$(PPC_CONFIG_H) \
187	$(INLINE_H) \
188	$(SIM_CALLBACKS_H) \
189	$(DEBUG_H) \
190	$(WORDS_H) \
191	$(BITS_H) \
192	$(SIM_ENDIAN_H)
193
194BITS_H = \
195	bits.h \
196	bits.c
197
198CAP_H = \
199	cap.h \
200	$(BASICS_H)
201
202COREFILE_H = \
203	corefile.h
204
205COREFILE_N_H = \
206	corefile-n.h
207
208CPU_H = \
209	cpu.h \
210	$(BASICS_H) \
211	$(REGISTERS_H) \
212	$(DEVICE_H) \
213	$(COREFILE_H) \
214	$(VM_H) \
215	$(EVENTS_H) \
216	$(INTERRUPTS_H) \
217	$(PSIM_H) \
218	$(IDECODE_H) \
219	$(ITABLE_H) \
220	$(OS_EMUL_H) \
221	$(MON_H) \
222	$(MODEL_H) \
223	cpu.c
224
225DEBUG_H = \
226	debug.h \
227	$(FILTER_FILENAME_H)
228
229DEVICE_H = \
230	device.h
231
232DEVICE_TABLE_H = \
233	device_table.h \
234	$(BASICS_H) \
235	$(DEVICE_H) \
236	$(TREE_H) \
237	$(HW_H)
238
239E500_EXPRESSION_H = \
240	e500_expression.h
241
242E500_REGISTERS_H = \
243	e500_registers.h
244
245EMUL_BUGAPI_H = \
246	emul_bugapi.h
247
248EMUL_CHIRP_H = \
249	emul_chirp.h
250
251EMUL_GENERIC_H = \
252	emul_generic.h \
253	$(CPU_H) \
254	$(IDECODE_H) \
255	$(OS_EMUL_H) \
256	$(TREE_H) \
257	$(BFD_H)
258
259EMUL_NETBSD_H = \
260	emul_netbsd.h
261
262EMUL_UNIX_H = \
263	emul_unix.h
264
265EVENTS_H = \
266	events.h
267
268FILTER_FILENAME_H = \
269	filter_filename.h
270
271FILTER_H = \
272	filter.h
273
274GEN_ICACHE_H = \
275	gen-icache.h
276
277GEN_IDECODE_H = \
278	gen-idecode.h
279
280GEN_ITABLE_H = \
281	gen-itable.h
282
283GEN_MODEL_H = \
284	gen-model.h
285
286GEN_SEMANTICS_H = \
287	gen-semantics.h
288
289GEN_SUPPORT_H = \
290	gen-support.h
291
292HW_CPU_H = \
293	hw_cpu.h
294
295HW_PHB_H = \
296	hw_phb.h
297
298IDECODE_BRANCH_H = \
299	idecode_branch.h
300
301IDECODE_EXPRESSION_H = \
302	idecode_expression.h \
303	$(ALTIVEC_EXPRESSION_H) \
304	$(E500_EXPRESSION_H)
305
306IDECODE_FIELDS_H = \
307	idecode_fields.h
308
309IGEN_H = \
310	igen.h
311
312INLINE_H = \
313	inline.h
314
315INTERRUPTS_H = \
316	interrupts.h
317
318LD_CACHE_H = \
319	ld-cache.h
320
321LD_DECODE_H = \
322	ld-decode.h
323
324LD_INSN_H = \
325	ld-insn.h
326
327LF_H = \
328	lf.h
329
330MISC_H = \
331	misc.h \
332	$(CONFIG_H) \
333	$(FILTER_FILENAME_H)
334
335MON_H = \
336	mon.h \
337	$(BASICS_H) \
338	$(ITABLE_H)
339
340OPTIONS_H = \
341	options.h
342
343OS_EMUL_H = \
344	os_emul.h
345
346PSIM_H = \
347	psim.h \
348	$(BASICS_H)
349
350REGISTERS_H = \
351	registers.h \
352	$(E500_REGISTERS_H) \
353	$(ALTIVEC_REGISTERS_H) \
354	$(SPREG_H)
355
356SIM_CALLBACKS_H = \
357	sim_callbacks.h
358
359SIM_ENDIAN_H = \
360	sim-endian.h \
361	sim-endian.c
362
363SIM_ENDIAN_N_H = \
364	sim-endian-n.h
365
366SIM_MAIN_H = \
367	sim-main.h \
368	$(COMMON_SIM_BASICS_H) \
369	$(COMMON_SIM_SIGNAL_H) \
370	$(COMMON_SIM_BASE_H)
371
372STD_CONFIG_H = \
373	std-config.h
374
375TABLE_H = \
376	table.h
377
378TREE_H = \
379	tree.h
380
381VM_H = \
382	vm.h
383
384VM_N_H = \
385	vm_n.h
386
387WORDS_H = \
388	words.h
389
390
391# Generated headers.
392CONFIG_H = \
393        config.h
394
395DEFINES_H = \
396        defines.h
397
398HW_H = \
399        hw.h
400
401ICACHE_H = \
402        icache.h
403
404IDECODE_H = \
405        idecode.h \
406        $(IDECODE_EXPRESSION_H) \
407        $(IDECODE_FIELDS_H) \
408        $(IDECODE_BRANCH_H)
409
410ITABLE_H = \
411        itable.h
412
413MODEL_H = \
414        model.h
415
416PK_H = \
417        pk.h
418
419PPC_CONFIG_H = \
420        ppc-config.h
421
422SEMANTICS_H = \
423        semantics.h
424
425SPREG_H = \
426        spreg.h
427
428SUPPORT_H = \
429        support.h \
430        support.c
431
432TARG_VALS_H = \
433        targ-vals.h
434
435INLINE = \
436	inline.h \
437	inline.c
438
439BUILT_SRC_WO_CONFIG = \
440	icache.h icache.c \
441	support.h support.c \
442	idecode.h idecode.c \
443	semantics.h semantics.c \
444	itable.h itable.c \
445	spreg.h spreg.c \
446	model.h model.c \
447	support.h support.c \
448	pk.h \
449	hw.h hw.c \
450	filter_host.c \
451	@sim_targ_vals@
452
453BUILT_SRC = \
454	$(BUILT_SRC_WO_CONFIG) \
455	config.h \
456	ppc-config.h 
457
458LIB_INLINE_SRC = \
459	psim.c \
460	bits.c \
461	debug.c \
462	sim-endian.c \
463	sim-endian.h \
464	sim-endian-n.h \
465	vm.c \
466	vm_n.h \
467	corefile.c \
468	events.c \
469	os_emul.c \
470	registers.c \
471	cpu.c \
472	interrupts.c \
473	device.c \
474	tree.c \
475	device_table.c \
476	cap.c \
477	mon.c \
478	options.c
479
480LIB_SRC = \
481	$(PACKAGE_SRC) \
482	$(HW_SRC) \
483	$(LIB_INLINE_SRC)
484
485MAIN_SRC = \
486	main.c \
487	gdb-sim.c \
488	sim_calls.c
489
490
491# NOTE: semantics, idecode and psim put last so smaller files are compiled
492#       first
493LIB_OBJ = \
494	debug.o \
495	filter_filename.o \
496	bits.o \
497	sim-endian.o \
498	os_emul.o \
499	emul_generic.o \
500	emul_bugapi.o \
501	emul_chirp.o \
502	emul_netbsd.o \
503	emul_unix.o \
504	registers.o \
505	vm.o \
506	corefile.o \
507	model.o \
508	spreg.o \
509	cpu.o \
510	interrupts.o \
511	events.o \
512	cap.o \
513	device.o \
514	tree.o \
515	device_table.o \
516	itable.o \
517	mon.o \
518	icache.o \
519	semantics.o \
520	idecode.o \
521	support.o \
522	@sim_fpu@ \
523	psim.o \
524	version.o \
525	$(PACKAGE_OBJ) \
526	$(HW_OBJ) \
527	options.o
528
529
530GDB_OBJ = gdb-sim.o sim_calls.o @sim_callback@
531
532HW_SRC = @sim_hw_src@
533HW_OBJ = @sim_hw_obj@
534
535PACKAGE_SRC = @sim_pk_src@
536PACKAGE_OBJ = @sim_pk_obj@
537
538
539psim: $(TARGETLIB) main.o $(LIBIBERTY_LIB) $(BFD_LIB) $(LIBINTL_DEP)
540	$(CC) $(CFLAGS) $(LDFLAGS) -o psim$(EXEEXT) main.o $(TARGETLIB) $(BFD_LIB) $(ZLIB) $(LIBINTL) $(LIBIBERTY_LIB) $(LIBS)
541
542run: psim
543	rm -f run$(EXEEXT)
544	ln psim$(EXEEXT) run$(EXEEXT)
545
546$(TARGETLIB): tmp-igen tmp-dgen tmp-hw tmp-pk tmp-defines $(LIB_OBJ) $(GDB_OBJ)
547	rm -f $(TARGETLIB)
548	$(AR) $(AR_FLAGS) $(TARGETLIB) $(LIB_OBJ) $(GDB_OBJ)
549	$(RANLIB) $(TARGETLIB)
550
551version.c: Makefile $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcroot)/sim/common/create-version.sh
552	$(SHELL) $(srcroot)/sim/common/create-version.sh $(srcroot)/gdb \
553	    $(host_alias) $(target_alias) version.c
554version.o: version.c $(version_h)
555
556psim.o: psim.c $(CPU_H) $(IDECODE_H) $(OPTIONS_H) $(TREE_H) $(BFD_H)
557
558bits.o: bits.c $(BASICS_H)
559
560debug.o: debug.c $(CONFIG_H) $(BASICS_H)
561filter_filename.o: filter_filename.c $(CONFIG_H) $(PPC_CONFIG_H) $(FILTER_FILENAME_H)
562
563sim-endian.o: sim-endian.c $(CONFIG_H) $(BASICS_H) $(SIM_ENDIAN_N_H)
564
565os_emul.o: os_emul.c $(CPU_H) $(IDECODE_H) $(OS_EMUL_H) $(EMUL_GENERIC_H) $(EMUL_NETBSD_H) $(EMUL_UNIX_H) $(EMUL_CHIRP_H) $(EMUL_BUGAPI_H)
566emul_generic.o: emul_generic.c $(EMUL_GENERIC_H)
567
568emul_bugapi.o: emul_bugapi.c $(EMUL_GENERIC_H) $(EMUL_BUGAPI_H)
569emul_chirp.o: emul_chirp.c $(EMUL_GENERIC_H) $(EMUL_CHIRP_H)
570emul_netbsd.o: emul_netbsd.c $(EMUL_GENERIC_H) $(EMUL_NETBSD_H)
571emul_unix.o: emul_unix.c $(EMUL_GENERIC_H) $(EMUL_UNIX_H)
572
573registers.o: registers.c $(BASICS_H) $(REGISTERS_H)
574
575cpu.o: cpu.c $(CPU_H) $(IDECODE_H)
576
577interrupts.o: interrupts.c $(CPU_H) $(IDECODE_H) $(OS_EMUL_H)
578
579# Given that inlines are turned on now, rebuild idecode whenever
580# anything changes.
581idecode.o: idecode.c $(CPU_H) $(IDECODE_H) $(SEMANTICS_H) $(LIB_INLINE_SRC) $(BUILT_SRC)
582
583# double.o: double.c dp-bit.c
584
585vm.o: vm.c $(BASICS_H) $(REGISTERS_H) $(DEVICE_H) $(COREFILE_H) $(VM_H) $(INTERRUPTS_H) $(MON_H) $(CPU_H) $(VM_N_H)
586
587corefile.o: corefile.c $(BASICS_H) $(DEVICE_TABLE_H) $(COREFILE_H) $(COREFILE_N_H)
588
589model.o: model.c $(CPU_H) $(MON_H)
590
591events.o: events.c $(BASICS_H) $(EVENTS_H)
592
593sim_calls.o: sim_calls.c $(PSIM_H) $(OPTIONS_H) $(DEFS_H) $(BFD_H) $(GDB_CALLBACK_H) $(GDB_REMOTE_SIM_H)
594
595gdb-sim.o: gdb-sim.c $(PSIM_H)  $(OPTIONS_H) $(REGISTERS_H) $(GDB_REMOTE_SIM_H) $(GDB_SIM_PPC_H) $(SIM_CALLBACK_H)
596
597spreg.o: spreg.c $(BASICS_H) $(SPREG_H)
598
599main.o: main.c $(PSIM_H) $(OPTIONS_H) $(DEVICE_H) $(EVENTS_H) $(BFD_H) $(GDB_CALLBACK_H) $(GDB_REMOTE_SIM_H)
600
601device.o: device.c $(DEVICE_TABLE_H) $(CAP_H) $(EVENTS_H) $(PSIM_H)
602
603tree.o: tree.c $(BASICS_H) $(DEVICE_H) $(TREE_H)
604
605device_table.o: device_table.c $(DEVICE_TABLE_H) hw.c
606
607cap.o: cap.c $(CAP_H)
608
609semantics.o: semantics.c $(CPU_H) $(IDECODE_H) $(SEMANTICS_H) $(COMMON_SIM_INLINE_H) $(COMMON_SIM_FPU_H) $(SUPPORT_H)
610
611icache.o: icache.c $(CPU_H) $(IDECODE_H) $(SEMANTICS_H) $(ICACHE_H) $(COMMON_SIM_INLINE_H) $(COMMON_SIM_FPU_H) $(SUPPORT_H)
612
613support.o: support.c $(CPU_H) $(IDECODE_H) $(COMMON_SIM_INLINE_H) $(COMMON_SIM_FPU_H) $(SUPPORT_H)
614
615itable.o: itable.c $(ITABLE_H)
616
617mon.o: mon.c $(BASICS_H) $(CPU_H) $(MON_H)
618
619# GDB after 4.16 expects the default_callback structure to be setup.
620# As a kludge, build the common stuff here for now.
621gentmap: $(srcdir)/../common/gentmap.c Makefile targ-vals.def
622	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -I. -I../common -I$(srcdir)/../common \
623		-o gentmap $(srcdir)/../common/gentmap.c $(BUILD_LIBS)
624
625targ-vals.def: $(srcdir)/../common/nltvals.def
626	rm -f targ-vals.def tmp-def
627	cat $(srcdir)/../common/nltvals.def > tmp-vals.def
628	$(SHELL) $(srcdir)/../../move-if-change tmp-vals.def targ-vals.def
629
630targ-vals.h: Makefile gentmap $(srcdir)/../../move-if-change
631	rm -f tmp-vals.h
632	./gentmap -h > tmp-vals.h
633	$(SHELL) $(srcdir)/../../move-if-change tmp-vals.h targ-vals.h
634
635targ-map.c: Makefile gentmap $(srcdir)/../../move-if-change
636	rm -f tmp-map.c
637	./gentmap -c > tmp-map.c
638	$(SHELL) $(srcdir)/../../move-if-change tmp-map.c targ-map.c
639
640callback.o: $(srcdir)/../common/callback.c $(TARG_VALS_H) $(CONFIG_H)
641	$(CC) -c $(STD_CFLAGS) -DHAVE_CONFIG_H $(srcdir)/../common/callback.c
642
643targ-map.o: targ-map.c $(ANSIDECL_H) $(GDB_CALLBACK_H) $(TARG_VALS_H)
644
645sim-fpu.o: $(srcdir)/../common/sim-fpu.c $(CONFIG_H)
646	$(CC) -c $(STD_CFLAGS) -DHAVE_CONFIG_H $(srcdir)/../common/sim-fpu.c 
647
648# Rebuild options whenever something changes so the date/time is up to date.
649options.o: options.c $(CPU_H) $(OPTIONS_H) $(DEFINES_H) $(BASICS_H) $(IDECODE_H) $(INLINE) $(LIB_SRC) $(BUILT_SRC) config.status Makefile
650	$(CC) -c $(STD_CFLAGS) '-DOPCODE_RULES="@sim_opcode@"' '-DIGEN_FLAGS="$(IGEN_FLAGS)"' '-DDGEN_FLAGS="$(DGEN_FLAGS)"' $(srcdir)/options.c
651
652defines.h: tmp-defines; @true
653tmp-defines: config.h Makefile
654	sed -n -e '/^#define HAVE_/s/ 1$$/",/' -e '/^#define HAVE_/s//"HAVE_/p' < config.h > tmp-defines.h
655	$(SHELL) $(srcdir)/../../move-if-change tmp-defines.h defines.h
656	touch tmp-defines
657
658#
659# Rules to create the built c source code files
660#
661
662ppc-config.h: $(CONFIG_FILE)
663	cp $(srcdir)/$(CONFIG_FILE) ppc-config.h
664
665
666tmp-dgen: dgen ppc-spr-table $(srcdir)/../../move-if-change
667	./dgen $(DGEN_FLAGS) \
668		-r $(srcdir)/ppc-spr-table \
669		-n spreg.h -hp tmp-spreg.h \
670		-n spreg.c -p  tmp-spreg.c
671	$(SHELL) $(srcdir)/../../move-if-change tmp-spreg.h spreg.h
672	$(SHELL) $(srcdir)/../../move-if-change tmp-spreg.c spreg.c
673	touch tmp-dgen
674
675tmp-igen: igen $(srcdir)/ppc-instructions $(srcdir)/altivec.igen $(srcdir)/e500.igen $(IGEN_OPCODE_RULES) $(srcdir)/../../move-if-change tmp-ld-decode tmp-ld-cache tmp-ld-insn tmp-filter
676	./igen	$(IGEN_FLAGS) \
677		-o $(srcdir)/$(IGEN_OPCODE_RULES) \
678		-I $(srcdir) -i $(srcdir)/ppc-instructions \
679		-n icache.h    -hc tmp-icache.h \
680		-n icache.c    -c  tmp-icache.c \
681		-n semantics.h -hs tmp-semantics.h \
682		-n semantics.c -s  tmp-semantics.c \
683		-n idecode.h   -hd tmp-idecode.h \
684		-n idecode.c   -d  tmp-idecode.c \
685		-n itable.h    -ht tmp-itable.h \
686		-n itable.c    -t  tmp-itable.c \
687		-n model.h     -hm tmp-model.h \
688		-n model.c     -m  tmp-model.c \
689		-n support.h   -hf tmp-support.h \
690		-n support.c   -f  tmp-support.c
691	$(SHELL) $(srcdir)/../../move-if-change tmp-icache.h icache.h
692	$(SHELL) $(srcdir)/../../move-if-change tmp-icache.c icache.c
693	$(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h idecode.h
694	$(SHELL) $(srcdir)/../../move-if-change tmp-idecode.c idecode.c
695	$(SHELL) $(srcdir)/../../move-if-change tmp-semantics.h semantics.h
696	$(SHELL) $(srcdir)/../../move-if-change tmp-semantics.c semantics.c
697	$(SHELL) $(srcdir)/../../move-if-change tmp-itable.h itable.h
698	$(SHELL) $(srcdir)/../../move-if-change tmp-itable.c itable.c
699	$(SHELL) $(srcdir)/../../move-if-change tmp-model.h model.h
700	$(SHELL) $(srcdir)/../../move-if-change tmp-model.c model.c
701	$(SHELL) $(srcdir)/../../move-if-change tmp-support.h support.h
702	$(SHELL) $(srcdir)/../../move-if-change tmp-support.c support.c
703	touch tmp-igen
704
705# NOTE: Some versions of make don't handle files created as side-effects
706# uncomment the below if that is the case.
707
708$(TARGETLIB): tmp-igen tmp-dgen
709itable.h itable.c icache.h icache.c idecode.h idecode.c semantics.h semantics.c model.h model.c support.h support.c: tmp-igen
710spreg.h spreg.c: tmp-dgen
711
712dgen: dgen.o table.o lf.o misc.o filter_host.o
713	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -o dgen dgen.o table.o lf.o misc.o filter_host.o $(BUILD_LIBS)
714
715igen: igen.o table.o lf.o misc.o filter_host.o ld-decode.o ld-cache.o filter.o ld-insn.o gen-model.o gen-itable.o gen-icache.o gen-semantics.o gen-idecode.o gen-support.o
716	$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o igen igen.o table.o lf.o misc.o filter_host.o ld-decode.o ld-cache.o filter.o ld-insn.o gen-model.o gen-itable.o gen-icache.o gen-semantics.o gen-idecode.o gen-support.o $(BUILD_LIBS)
717
718filter_host.c: filter_filename.c
719	cat $(srcdir)/filter_filename.c > filter_host.c
720
721filter_host.o: filter_host.c $(CONFIG_H) $(PPC_CONFIG_H) $(FILTER_FILENAME_H)
722	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c filter_host.c
723
724table.o: table.c $(CONFIG_H) $(MISC_H) $(LF_H) $(TABLE_H)
725	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/table.c
726
727lf.o: lf.c $(CONFIG_H) $(MISC_H) $(LF_H)
728	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/lf.c
729
730filter.o: filter.c $(CONFIG_H) $(MISC_H) $(FILTER_H)
731	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/filter.c
732tmp-filter: filter.c $(MISC_H) misc.o
733	$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o tmp-filter -DMAIN $(srcdir)/filter.c misc.o $(BUILD_LIBS)
734
735ld-decode.o: ld-decode.c $(MISC_H) $(LF_H) $(TABLE_H) $(LD_DECODE_H)
736	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/ld-decode.c
737tmp-ld-decode: ld-decode.c misc.o lf.o table.o filter_host.o 
738	$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o tmp-ld-decode -DMAIN $(srcdir)/ld-decode.c misc.o lf.o table.o filter_host.o $(BUILD_LIBS)
739
740ld-cache.o: ld-cache.c $(MISC_H) $(LF_H) $(TABLE_H) $(LD_CACHE_H)
741	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/ld-cache.c
742tmp-ld-cache: ld-cache.c misc.o lf.o table.o filter_host.o 
743	$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o tmp-ld-cache -DMAIN $(srcdir)/ld-cache.c misc.o lf.o table.o filter_host.o $(BUILD_LIBS)
744
745ld-insn.o: ld-insn.c $(MISC_H) $(LF_H) $(TABLE_H) $(FILTER_H) $(LD_DECODE_H) $(LD_CACHE_H) $(LD_INSN_H) $(IGEN_H)
746	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/ld-insn.c
747tmp-ld-insn: ld-insn.c ld-cache.o misc.o lf.o table.o ld-decode.o filter_host.o filter.o
748	$(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o tmp-ld-insn -DMAIN $(srcdir)/ld-insn.c ld-cache.o misc.o lf.o table.o ld-decode.o filter_host.o filter.o $(BUILD_LIBS)
749
750gen-model.o: gen-model.c $(MISC_H) $(LF_H) $(TABLE_H) $(FILTER_H) $(LD_CACHE_H) $(LD_DECODE_H) $(LD_INSN_H) $(GEN_MODEL_H)
751	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gen-model.c
752
753gen-itable.o: gen-itable.c $(MISC_H) $(LF_H) $(TABLE_H) $(FILTER_H) $(LD_CACHE_H) $(LD_DECODE_H) $(LD_INSN_H) $(IGEN_H) $(GEN_ITABLE_H)
754	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gen-itable.c
755
756gen-icache.o: gen-icache.c $(MISC_H) $(LF_H) $(TABLE_H) $(FILTER_H) $(LD_DECODE_H) $(LD_CACHE_H) $(LD_INSN_H) $(IGEN_H) $(GEN_SEMANTICS_H) $(GEN_IDECODE_H) $(GEN_ICACHE_H)
757	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gen-icache.c
758
759gen-semantics.o: gen-semantics.c $(MISC_H) $(LF_H) $(TABLE_H) $(FILTER_H) $(LD_DECODE_H) $(LD_CACHE_H) $(LD_INSN_H) $(IGEN_H) $(GEN_SEMANTICS_H) $(GEN_ICACHE_H) $(GEN_IDECODE_H)
760	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gen-semantics.c
761
762gen-idecode.o: gen-idecode.c $(MISC_H) $(LF_H) $(TABLE_H) $(FILTER_H) $(LD_DECODE_H) $(LD_CACHE_H) $(LD_INSN_H) $(IGEN_H) $(GEN_IDECODE_H) $(GEN_ICACHE_H) $(GEN_SEMANTICS_H)
763	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gen-idecode.c
764
765gen-support.o: gen-support.c $(MISC_H) $(LF_H) $(TABLE_H) $(FILTER_H) $(LD_DECODE_H) $(LD_CACHE_H) $(LD_INSN_H) $(IGEN_H) $(GEN_SEMANTICS_H) $(GEN_SUPPORT_H)
766	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gen-support.c
767
768dgen.o: dgen.c $(CONFIG_H) $(MISC_H) $(LF_H) $(TABLE_H)
769	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/dgen.c
770
771igen.o: igen.c $(MISC_H) $(LF_H) $(TABLE_H) $(CONFIG_H) $(FILTER_H) $(LD_CACHE_H) $(LD_DECODE_H) $(LD_INSN_H) $(IGEN_H) $(GEN_MODEL_H) $(GEN_ICACHE_H) $(GEN_ITABLE_H) $(GEN_IDECODE_H) $(GEN_SEMANTICS_H) $(GEN_SUPPORT_H)
772	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/igen.c
773
774misc.o: misc.c $(CONFIG_H) $(MISC_H)
775	$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/misc.c
776
777
778
779# real hardware
780hw.c hw.h: tmp-hw; @true
781tmp-hw: Makefile $(HW_SRC) $(srcdir)/../../move-if-change
782	# The first for loop is to remove duplicates.
783	f=""; \
784	for i in $(HW_SRC) ; do \
785	  case " $$f " in \
786	    *" $$i "*) ;; \
787	    *) f="$$f $$i" ;; \
788	  esac ; \
789	done ; \
790	for hw in $$f ; do echo $$hw ; done \
791	| sed -e 's/^.*\(hw_.*\)\.c/\1/' \
792		-e 's/^/extern const device_descriptor /' \
793		-e 's/$$/_device_descriptor\[\];/' \
794		> tmp-hw.h
795	f=""; \
796	for i in $(HW_SRC) ; do \
797	  case " $$f " in \
798	    *" $$i "*) ;; \
799	    *) f="$$f $$i" ;; \
800	  esac ; \
801	done ; \
802	for hw in $$f ; do echo $$hw ; done \
803	| sed -e 's/^.*\(hw_.*\)\.c/\1/' \
804		-e 's/^/    /' \
805		-e 's/$$/_device_descriptor,/' \
806		> tmp-hw.c
807	$(SHELL) $(srcdir)/../../move-if-change tmp-hw.h hw.h
808	$(SHELL) $(srcdir)/../../move-if-change tmp-hw.c hw.c
809	touch tmp-hw
810
811hw_cpu.o: hw_cpu.c $(DEVICE_TABLE_H) $(HW_CPU_H) $(INTERRUPTS_H) $(CPU_H)
812hw_com.o: hw_com.c $(DEVICE_TABLE_H)
813hw_core.o: hw_core.c $(DEVICE_TABLE_H) $(COREFILE_H)
814hw_disk.o: hw_disk.c $(DEVICE_TABLE_H) $(PK_H)
815hw_eeprom.o: hw_eeprom.c $(DEVICE_TABLE_H)
816hw_glue.o: hw_glue.c $(DEVICE_TABLE_H)
817hw_htab.o: hw_htab.c $(DEVICE_TABLE_H) $(BFD_H)
818hw_ide.o: hw_ide.c $(DEVICE_TABLE_H)
819hw_init.o: hw_init.c $(DEVICE_TABLE_H) $(BFD_H) $(PSIM_H)
820hw_iobus.o: hw_iobus.c $(DEVICE_TABLE_H)
821hw_memory.o: hw_memory.c $(DEVICE_TABLE_H)
822hw_nvram.o: hw_nvram.c $(DEVICE_TABLE_H)
823hw_opic.o: hw_opic.c $(DEVICE_TABLE_H)
824hw_pal.o: hw_pal.c $(DEVICE_TABLE_H) $(CPU_H)
825hw_phb.o: hw_phb.c $(DEVICE_TABLE_H) $(HW_PHB_H) $(COREFILE_H)
826hw_register.o: hw_register.c $(DEVICE_TABLE_H) $(PSIM_H)
827hw_sem.o: hw_sem.c $(DEVICE_TABLE_H) $(PSIM_H)
828hw_shm.o: hw_shm.c $(DEVICE_TABLE_H) $(PSIM_H)
829hw_trace.o: hw_trace.c $(DEVICE_TABLE_H)
830hw_vm.o: hw_vm.c $(DEVICE_TABLE_H) $(CPU_H)
831# ignore this line, it stops make from getting confused
832
833
834
835# real packages
836pk.h: tmp-pk; @true
837tmp-pk: Makefile $(PACKAGE_SRC) $(srcdir)/../../move-if-change
838	# The first for loop is to remove duplicates.
839	f=""; \
840	for i in $(PACKAGE_SRC) ; do \
841	  case " $$f " in \
842	    *" $$i "*) ;; \
843	    *) f="$$f $$i" ;; \
844	  esac ; \
845	done ; \
846	for pk in $$f ; do echo $$pk ; done \
847	| sed -e 's/^.*pk_\(.*\)\.c/\1/' \
848		-e 's/^/extern package_create_instance_callback pk_/' \
849		-e 's/$$/_create_instance;/' \
850		> tmp-pk.h
851	$(SHELL) $(srcdir)/../../move-if-change tmp-pk.h pk.h
852	touch tmp-pk
853
854pk_disklabel.o: pk_disklabel.c $(DEVICE_TABLE_H) $(PK_H)
855# ignore this line, it stops make from getting confused
856
857
858
859tags etags: TAGS
860
861TAGS: $(BUILT_SRC)
862	etags $(srcdir)/*.h $(srcdir)/*.c $(BUILT_SRC)
863
864clean mostlyclean:
865	rm -f tmp-* *.[oasi] core psim$(EXEEXT) run$(EXEEXT) igen dgen $(BUILT_SRC_WO_CONFIG) gentmap
866
867distclean realclean: clean
868	rm -f TAGS Makefile config.cache config.status config.h defines.h stamp-h config.log
869
870maintainer-clean: distclean
871	rm -f *~ *.log ppc-config.h core *.core
872
873Makefile: Makefile.in config.status
874	CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
875
876config.h: stamp-h ; @true
877stamp-h: config.in config.status
878	CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
879
880config.status: configure
881	$(SHELL) ./config.status --recheck
882
883install: installdirs
884	n=`echo run | sed '$(program_transform_name)'`; \
885	$(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
886
887install-strip: installdirs
888	n=`echo run | sed '$(program_transform_name)'`; \
889	$(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
890	$(STRIP) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
891
892installdirs:
893	$(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
894