source: rtems/c/src/lib/libbsp/powerpc/virtex/Makefile.am @ d5286a1f

4.115
Last change on this file since d5286a1f was d5286a1f, checked in by Jennifer Averett <Jennifer.Averett@…>, on 10/18/11 at 18:34:02

2011-10-18 Jennifer Averett <Jennifer.Averett@…>

PR 1917/bsps

  • Makefile.am, console/consolelite.c: Modifications to add dynamic tables for libchip serial drivers.
  • Property mode set to 100644
File size: 2.3 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
15include_HEADERS += include/xparameters_dflt.h
16if HAS_NETWORKING
17include_HEADERS += network/xiltemac.h
18endif
19
20nodist_include_HEADERS = include/bspopts.h
21nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
22DISTCLEANFILES = include/bspopts.h
23
24noinst_PROGRAMS =
25
26include_HEADERS += include/coverhd.h
27
28noinst_LIBRARIES = libbspstart.a
29libbspstart_a_SOURCES = ../../powerpc/shared/start/rtems_crti.S
30project_lib_DATA = rtems_crti.$(OBJEXT)
31
32dist_project_lib_DATA += startup/linkcmds
33
34noinst_LIBRARIES += libbsp.a
35libbsp_a_SOURCES =
36
37# startup
38libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bspgetworkarea.c \
39    ../../shared/bspreset_fatal.c ../../shared/bsplibc.c \
40    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
41    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
42    ../../shared/sbrk.c ../../shared/gnatinstallhandler.c
43# dlentry
44libbsp_a_SOURCES += dlentry/dlentry.S
45# bspconsole
46libbsp_a_SOURCES += console/consolelite.c ../../shared/console.c \
47    ../../shared/console_select.c ../../shared/console_control.c \
48    ../../shared/console_read.c ../../shared/console_write.c
49include_bsp_HEADERS = include/opbintctrl.h
50# opbintctrl
51libbsp_a_SOURCES += opbintctrl/opbintctrl.c
52
53include_bsp_HEADERS += irq/irq.h
54# irq
55libbsp_a_SOURCES += irq/irq_init.c
56
57if HAS_NETWORKING
58network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
59network_CPPFLAGS += -D__BSD_VISIBLE
60noinst_PROGRAMS += network.rel
61network_rel_SOURCES = network/xiltemac.c
62network_rel_CPPFLAGS = $(AM_CPPFLAGS)
63network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
64endif
65
66libbsp_a_LIBADD = \
67    ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
68    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
69    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
70    ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
71    ../../../libcpu/@RTEMS_CPU@/ppc403/clock.rel \
72    ../../../libcpu/@RTEMS_CPU@/ppc403/timer.rel \
73    ../../../libcpu/@RTEMS_CPU@/ppc403/tty_drv.rel
74
75if HAS_NETWORKING
76libbsp_a_LIBADD += network.rel
77endif
78
79include $(srcdir)/preinstall.am
80include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.