source: rtems/c/src/lib/libbsp/arm/edb7312/Makefile.am @ 1f7d0cca

4.115
Last change on this file since 1f7d0cca was 1f7d0cca, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/19/11 at 08:12:17

2011-06-19 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Fix broken path to clockdrv_shell.h.
  • Property mode set to 100644
File size: 2.1 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
15
16include_bsp_HEADERS =
17
18nodist_include_HEADERS = include/bspopts.h
19nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
20DISTCLEANFILES = include/bspopts.h
21noinst_PROGRAMS =
22
23include_HEADERS += include/ep7312.h
24nodist_include_HEADERS += ../../shared/include/coverhd.h
25
26noinst_LIBRARIES = libbspstart.a
27libbspstart_a_SOURCES = start/start.S
28project_lib_DATA = start.$(OBJEXT)
29
30dist_project_lib_DATA += startup/linkcmds
31
32noinst_LIBRARIES += libbsp.a
33libbsp_a_SOURCES =
34
35include_HEADERS += ../../arm/shared/comm/uart.h
36# startup
37libbsp_a_SOURCES += ../../shared/bsppost.c ../../shared/bsplibc.c \
38    ../../shared/bspgetworkarea.c ../../shared/bsppretaskinghook.c \
39    ../../shared/bsppredriverhook.c startup/bspstart.c \
40    ../../shared/bspclean.c ../../shared/bootcard.c ../../shared/sbrk.c \
41    startup/bspreset.c ../../shared/gnatinstallhandler.c
42
43# clock
44libbsp_a_SOURCES += clock/clockdrv.c
45libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
46# console
47libbsp_a_SOURCES += console/uart.c ../../shared/console.c
48# timer
49libbsp_a_SOURCES += timer/timer.c
50# abort
51libbsp_a_SOURCES += ../shared/abort/abort.c
52
53# irq
54include_bsp_HEADERS += ../../shared/include/irq-generic.h \
55        ../../shared/include/irq-info.h \
56        irq/irq.h
57libbsp_a_SOURCES += ../../shared/src/irq-generic.c \
58        ../../shared/src/irq-legacy.c \
59        ../../shared/src/irq-info.c \
60        ../../shared/src/irq-shell.c \
61        ../../shared/src/irq-server.c \
62        irq/irq.c \
63        irq/bsp_irq_asm.S
64
65if HAS_NETWORKING
66network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
67noinst_PROGRAMS += network.rel
68network_rel_SOURCES = network/network.c
69network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
70network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
71endif
72
73# libcpu libraries could go here
74libbsp_a_LIBADD =
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.