source: rtems/c/src/lib/libbsp/powerpc/virtex4/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 
1
2ACLOCAL_AMFLAGS = -I ../../../../aclocal
3
4include $(top_srcdir)/../../../../automake/compile.am
5
6include_bspdir = $(includedir)/bsp
7
8dist_project_lib_DATA = bsp_specs
9
10# include
11include_HEADERS     = include/bsp.h
12include_HEADERS    += ../../shared/include/tm27.h
13
14include_bsp_HEADERS =
15
16nodist_include_HEADERS     = include/bspopts.h
17nodist_include_HEADERS    += include/coverhd.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES             = include/bspopts.h
20
21# start
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
29
30# startup
31libbsp_a_SOURCES = startup/bspclean.c \
32                   ../shared/startup/zerobss.c \
33                   ../../shared/bspgetworkarea.c \
34                   startup/bspstart.c \
35                   ../../shared/bootcard.c \
36                   ../../shared/sbrk.c \
37                   ../../shared/gnatinstallhandler.c \
38                   ../shared/src/memcpy.c
39
40# start
41libbsp_a_SOURCES += start/start.S
42
43# console
44libbsp_a_SOURCES += startup/dummy_console.c \
45                    ../../shared/dummy_printk_support.c
46
47# irq
48include_bsp_HEADERS += include/irq.h
49libbsp_a_SOURCES += irq/irq_init.c
50
51# mmu
52include_bsp_HEADERS += include/mmu.h
53libbsp_a_SOURCES += mmu/mmu.c
54
55#vectors
56include_bsp_HEADERS += ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/vectors.h
57include_bsp_HEADERS += ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/irq_supp.h
58
59libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
60                  ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
61                  ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
62                  ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
63                  ../../../libcpu/@RTEMS_CPU@/ppc403/clock.rel \
64                  ../../../libcpu/@RTEMS_CPU@/ppc403/timer.rel
65
66EXTRA_DIST = times
67
68include $(srcdir)/preinstall.am
69include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.