source: rtems/c/src/lib/libbsp/powerpc/haleakala/Makefile.am @ 2d2de4eb

4.104.115
Last change on this file since 2d2de4eb was 2d2de4eb, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 10/23/09 at 07:32:46

Update for exception support changes.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8
9include_bspdir = $(includedir)/bsp
10
11dist_project_lib_DATA = bsp_specs
12
13include_HEADERS = include/bsp.h
14include_HEADERS += ../../shared/include/tm27.h
15
16nodist_include_HEADERS = include/bspopts.h
17nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
18DISTCLEANFILES = include/bspopts.h
19
20include_HEADERS += include/coverhd.h
21
22noinst_LIBRARIES = libbspstart.a
23libbspstart_a_SOURCES = ../../powerpc/shared/start/rtems_crti.S
24project_lib_DATA = rtems_crti.$(OBJEXT)
25
26dist_project_lib_DATA += startup/linkcmds
27
28noinst_LIBRARIES += libbsp.a
29libbsp_a_SOURCES =
30
31# startup
32libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
33    ../../shared/bspreset_fatal.c ../../shared/bsppost.c \
34    startup/bspstart.c ../../shared/bootcard.c \
35    ../../shared/bsppredriverhook.c ../../shared/bspgetworkarea.c \
36    ../../shared/bsppretaskinghook.c ../../shared/sbrk.c \
37    ../../shared/gnatinstallhandler.c
38
39# dlentry
40libbsp_a_SOURCES += dlentry/dlentry.S
41
42include_bsp_HEADERS = ../../powerpc/shared/console/uart.h \
43    ../../powerpc/shared/console/consoleIo.h
44# console
45libbsp_a_SOURCES += ../../powerpc/shared/console/uart.c \
46    ../../powerpc/shared/console/console.c
47
48include_bsp_HEADERS += irq/irq.h \
49    ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/irq_supp.h
50
51# irq
52libbsp_a_SOURCES += irq/irq_init.c irq/irq.c
53
54libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
55    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
56    ../../../libcpu/@RTEMS_CPU@/@exceptions@/irq_bspsupport.rel \
57    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
58    ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
59    ../../../libcpu/@RTEMS_CPU@/ppc403/clock.rel \
60    ../../../libcpu/@RTEMS_CPU@/ppc403/timer.rel
61
62EXTRA_DIST = times
63
64include $(srcdir)/preinstall.am
65include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.