source: rtems/c/src/lib/libbsp/powerpc/virtex5/Makefile.am @ ca4602e

5
Last change on this file since ca4602e was ca4602e, checked in by Sebastian Huber <sebastian.huber@…>, on 01/25/16 at 21:03:00

Use linker set for libio initialization

Update #2408.

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