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

4.115
Last change on this file since cb5eaddf was 47a3cd8, checked in by Sebastian Huber <sebastian.huber@…>, on 08/09/12 at 14:48:00

score: Work area initialization API change

The work areas (RTEMS work space and C program heap) will be initialized
now in a separate step and are no longer part of
rtems_initialize_data_structures(). Initialization is performed with
tables of Heap_Area entries. This allows usage of scattered memory
areas present on various small scale micro-controllers.

The sbrk() support API changes also. The bsp_sbrk_init() must now deal
with a minimum size for the first memory chunk to take the configured
work space size into account.

  • 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
35start.$(OBJEXT): ../shared/start/start.S
36        $(CPPASCOMPILE) -o $@ -c $<
37project_lib_DATA = start.$(OBJEXT)
38
39dist_project_lib_DATA += ../shared/startup/linkcmds
40
41startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
42    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
43    ../../shared/bsppost.c \
44    ../../shared/bootcard.c ../../shared/sbrk.c \
45    ../../shared/bspgetworkarea.c \
46    ../shared/startup/bspstart.c \
47    ../shared/startup/setvec.c \
48    ../../shared/gnatinstallhandler.c  \
49    ../shared/helenos/boot/genarch/balloc.c \
50    ../shared/helenos/boot/genarch/ofw.c \
51    ../shared/helenos/boot/genarch/ofw_tree.c \
52    ../shared/helenos/boot/generic/string.c \
53    ../shared/helenos/boot/sparc64/loader/ofwarch.c \
54    ../shared/helenos/boot/sparc64/loader/main.c \
55    ../shared/helenos/boot/sparc64/loader/ofwasm.S \
56    start/bspinit.S \
57    ../shared/asm/asm.S
58
59#clock_SOURCES = ../../shared/clock_driver_simidle.c
60clock_SOURCES = ../shared/clock/ckinit.c
61
62console_SOURCES = ../../shared/console.c  ../shared/console/conscfg.c \
63    ../../shared/console_select.c ../../shared/console_control.c \
64    ../../shared/console_read.c ../../shared/console_write.c
65
66timer_SOURCES = ../../shared/timerstub.c
67
68noinst_LIBRARIES = libbsp.a
69libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
70    $(timer_SOURCES)
71
72libbsp_a_LIBADD = \
73      ../../../libcpu/@RTEMS_CPU@/shared/shared-score.rel \
74      ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
75      ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel \
76      ../../../libcpu/@RTEMS_CPU@/shared/sparc64-syscall.rel
77
78include $(srcdir)/preinstall.am
79include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.