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

5
Last change on this file since e2cf289 was ec32100, checked in by Sebastian Huber <sebastian.huber@…>, on 01/02/18 at 06:37:44

bsps: Use CPPASCOMPILE for startfile

Update #3254.

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