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

4.115
Last change on this file since 4d6f5f5 was 4d6f5f5, checked in by Joel Sherrill <joel.sherrill@…>, on 06/17/10 at 16:20:34

2010-06-17 Joel Sherrill <joel.sherrill@…>

  • ChangeLog?, Makefile.am, README, bsp_specs, configure.ac, preinstall.am, include/bsp.h, include/tm27.h, make/custom/niagara.cfg, start/bspinit.S: New files.
  • Property mode set to 100644
File size: 2.6 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
68timer_SOURCES = ../../shared/timerstub.c
69
70noinst_LIBRARIES = libbsp.a
71libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
72    $(timer_SOURCES)
73
74libbsp_a_LIBADD = \
75      ../../../libcpu/@RTEMS_CPU@/shared/shared-score.rel \
76      ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
77      ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel \
78      ../../../libcpu/@RTEMS_CPU@/shared/sparc64-syscall.rel
79
80EXTRA_DIST += times
81
82include $(srcdir)/preinstall.am
83include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.