source: rtems/c/src/lib/libbsp/powerpc/virtex4/Makefile.am @ 33a105fb

4.115
Last change on this file since 33a105fb was 33a105fb, checked in by Joel Sherrill <joel.sherrill@…>, on 05/07/12 at 16:08:48

Revert: Remove CVS Ids

See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html
for details.

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