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

4.115
Last change on this file since 1aa561d was 1aa561d, checked in by Jennifer Averett <Jennifer.Averett@…>, on 10/18/11 at 18:28:37

2011-10-18 Jennifer Averett <Jennifer.Averett@…>

PR 1917/bsps

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