source: rtems/c/src/lib/libbsp/sparc64/niagara/Makefile.am @ 73b9af2d

4.115
Last change on this file since 73b9af2d was 73b9af2d, checked in by Gedare Bloom <gedare@…>, on 03/14/14 at 18:22:30

sparc64/niagara: add bsp_fatal_handler to terminate execution

Terminates the execution of niagara BSP when running in gem5.

  • Property mode set to 100644
File size: 2.7 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4include $(top_srcdir)/../../bsp.am
5
6include_bspdir = $(includedir)/bsp
7
8dist_project_lib_DATA = bsp_specs
9
10include_HEADERS = include/bsp.h
11include_HEADERS += include/tm27.h
12include_HEADERS += ../shared/include/asm.h
13
14include_bootdir = $(includedir)/boot
15include_boot_HEADERS = ../shared/helenos/boot/include/align.h \
16  ../shared/helenos/boot/include/balloc.h \
17  ../shared/helenos/boot/include/gentypes.h \
18  ../shared/helenos/boot/include/main.h \
19  ../shared/helenos/boot/include/ofwarch.h \
20  ../shared/helenos/boot/include/ofw.h \
21  ../shared/helenos/boot/include/ofw_tree.h \
22  ../shared/helenos/boot/include/register.h \
23  ../shared/helenos/boot/include/stack.h \
24  ../shared/helenos/boot/include/types.h
25
26nodist_include_HEADERS = include/bspopts.h   
27nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
28DISTCLEANFILES = include/bspopts.h
29noinst_PROGRAMS =
30
31nodist_include_HEADERS += ../../shared/include/coverhd.h
32
33
34EXTRA_DIST = ../shared/start/start.S
35%.$(OBJEXT):%.S
36        $(CPPASCOMPILE) -o $@ -c $<
37project_lib_DATA = start.$(OBJEXT)
38
39dist_project_lib_DATA += ../shared/startup/linkcmds
40
41startup_SOURCES = startup/bspclean.c startup/m5op_sparc.S \
42    ../../shared/bsplibc.c \
43    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
44    ../../shared/bsppost.c \
45    ../../shared/bootcard.c ../../shared/sbrk.c \
46    ../../shared/bspgetworkarea.c \
47    ../shared/startup/bspstart.c \
48    ../shared/startup/setvec.c \
49    ../../shared/gnatinstallhandler.c  \
50    ../shared/helenos/boot/genarch/balloc.c \
51    ../shared/helenos/boot/genarch/ofw.c \
52    ../shared/helenos/boot/genarch/ofw_tree.c \
53    ../shared/helenos/boot/generic/string.c \
54    ../shared/helenos/boot/sparc64/loader/ofwarch.c \
55    ../shared/helenos/boot/sparc64/loader/main.c \
56    ../shared/helenos/boot/sparc64/loader/ofwasm.S \
57    start/bspinit.S \
58    ../shared/asm/asm.S
59
60#clock_SOURCES = ../../shared/clock_driver_simidle.c
61clock_SOURCES = ../shared/clock/ckinit.c
62
63console_SOURCES = ../../shared/console.c  ../shared/console/conscfg.c \
64    ../../shared/console_select.c ../../shared/console_control.c \
65    ../../shared/console_read.c ../../shared/console_write.c
66
67timer_SOURCES = ../../shared/timerstub.c
68
69noinst_LIBRARIES = libbsp.a
70libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
71    $(timer_SOURCES)
72
73libbsp_a_LIBADD = \
74      ../../../libcpu/@RTEMS_CPU@/shared/shared-score.rel \
75      ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
76      ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel \
77      ../../../libcpu/@RTEMS_CPU@/shared/sparc64-syscall.rel
78
79include $(srcdir)/preinstall.am
80include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.