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

4.104.115
Last change on this file since 2ed512bf was 2ed512bf, checked in by Joel Sherrill <joel.sherrill@…>, on 07/03/09 at 13:58:05

2009-07-03 Joel Sherrill <joel.sherrill@…>

  • Makefile.am: Eliminate unused routine.
  • startup/setvec.c: Removed.
  • Property mode set to 100644
File size: 2.4 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
48include_bsp_HEADERS = include/opbintctrl.h
49# opbintctrl
50libbsp_a_SOURCES += opbintctrl/opbintctrl.c
51
52include_bsp_HEADERS += irq/irq.h
53# irq
54libbsp_a_SOURCES += irq/irq_init.c
55
56include_bsp_HEADERS +=  \
57  ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/vectors.h \
58  ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/ppc_exc_bspsupp.h
59
60if HAS_NETWORKING
61network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
62network_CPPFLAGS += -D__BSD_VISIBLE
63noinst_PROGRAMS += network.rel
64network_rel_SOURCES = network/xiltemac.c
65network_rel_CPPFLAGS = $(AM_CPPFLAGS)
66network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
67endif
68
69libbsp_a_LIBADD = \
70    ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
71    ../../../libcpu/@RTEMS_CPU@/@exceptions@/raw_exception.rel \
72    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
73    ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
74    ../../../libcpu/@RTEMS_CPU@/ppc403/clock.rel \
75    ../../../libcpu/@RTEMS_CPU@/ppc403/timer.rel \
76    ../../../libcpu/@RTEMS_CPU@/ppc403/tty_drv.rel
77
78if HAS_NETWORKING
79libbsp_a_LIBADD += network.rel
80endif
81
82EXTRA_DIST = times
83
84include $(srcdir)/preinstall.am
85include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.