source: rtems/c/src/lib/libbsp/arm/lpc32xx/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: 5.0 KB
Line 
1##
2#
3# @file
4#
5# @brief Makefile of LibBSP for the LPC32XX boards.
6#
7
8# $Id$
9
10ACLOCAL_AMFLAGS = -I ../../../../aclocal
11
12include $(top_srcdir)/../../../../automake/compile.am
13
14include_bspdir = $(includedir)/bsp
15include_libcpudir = $(includedir)/libcpu
16
17dist_project_lib_DATA = bsp_specs
18
19###############################################################################
20#                  Header                                                     #
21###############################################################################
22
23include_HEADERS = include/bsp.h
24include_HEADERS += include/tm27.h
25
26nodist_include_HEADERS = ../../shared/include/coverhd.h \
27        include/bspopts.h
28
29nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
30
31include_bsp_HEADERS =
32include_bsp_HEADERS += ../../shared/include/utility.h
33include_bsp_HEADERS += ../../shared/include/irq-generic.h
34include_bsp_HEADERS += ../../shared/include/irq-info.h
35include_bsp_HEADERS += ../../shared/include/stackalloc.h
36include_bsp_HEADERS += ../../shared/include/uart-output-char.h
37include_bsp_HEADERS += ../../shared/tod.h
38include_bsp_HEADERS += ../shared/include/start.h
39include_bsp_HEADERS += ../shared/lpc/include/lpc-timer.h
40include_bsp_HEADERS += ../shared/lpc/include/lpc-dma.h
41include_bsp_HEADERS += ../shared/lpc/include/lpc-i2s.h
42include_bsp_HEADERS += ../shared/lpc/include/lpc-emc.h
43include_bsp_HEADERS += ../shared/lpc/include/lpc-lcd.h
44include_bsp_HEADERS += include/irq.h
45include_bsp_HEADERS += include/mmu.h
46include_bsp_HEADERS += include/lpc32xx.h
47include_bsp_HEADERS += include/lpc-clock-config.h
48include_bsp_HEADERS += include/lpc-ethernet-config.h
49include_bsp_HEADERS += include/nand-mlc.h
50include_bsp_HEADERS += include/boot.h
51include_bsp_HEADERS += include/i2c.h
52include_bsp_HEADERS += include/emc.h
53
54include_libcpu_HEADERS = ../../../libcpu/arm/shared/include/arm-cp15.h
55
56###############################################################################
57#                  Data                                                       #
58###############################################################################
59
60noinst_LIBRARIES = libbspstart.a
61
62libbspstart_a_SOURCES = ../shared/start/start.S
63
64project_lib_DATA = start.$(OBJEXT)
65
66project_lib_DATA += startup/linkcmds
67project_lib_DATA += startup/linkcmds.lpc32xx
68
69EXTRA_DIST = startup/linkcmds.lpc32xx_phycore \
70        startup/linkcmds.lpc32xx_mzx_stage_1 \
71        startup/linkcmds.lpc32xx_mzx_stage_2 \
72        startup/linkcmds.lpc32xx_mzx
73
74###############################################################################
75#                  LibBSP                                                     #
76###############################################################################
77
78noinst_LIBRARIES += libbsp.a
79
80libbsp_a_SOURCES =
81libbsp_a_CPPFLAGS =
82libbsp_a_LIBADD =
83
84# Shared
85libbsp_a_SOURCES += ../../shared/bootcard.c \
86        ../../shared/bspclean.c \
87        ../../shared/bspgetworkarea.c \
88        ../../shared/bsplibc.c \
89        ../../shared/bsppost.c \
90        ../../shared/bsppredriverhook.c \
91        ../../shared/bsppretaskinghook.c \
92        ../../shared/gnatinstallhandler.c \
93        ../../shared/sbrk.c \
94        ../../shared/src/stackalloc.c \
95        ../../shared/src/uart-output-char.c \
96        ../shared/abort/simple_abort.c
97
98# Startup
99libbsp_a_SOURCES += startup/bspstart.c \
100        startup/bspreset.c
101
102# IRQ
103libbsp_a_SOURCES += ../../shared/src/irq-generic.c \
104        ../../shared/src/irq-legacy.c \
105        ../../shared/src/irq-info.c \
106        ../../shared/src/irq-shell.c \
107        ../../shared/src/irq-server.c \
108        irq/irq.c
109
110# Console
111libbsp_a_SOURCES += ../../shared/console.c \
112        console/console-config.c \
113        console/hsu.c
114
115# Clock
116libbsp_a_SOURCES += ../shared/lpc/clock/lpc-clock-config.c
117libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
118
119# RTC
120libbsp_a_SOURCES += ../../shared/tod.c \
121        rtc/rtc-config.c
122
123# Misc
124libbsp_a_SOURCES += misc/timer.c \
125        misc/nand-mlc.c \
126        misc/nand-mlc-read-blocks.c \
127        misc/nand-mlc-write-blocks.c \
128        misc/restart.c \
129        misc/boot.c \
130        misc/emc.c \
131        misc/mmu.c \
132        misc/i2c.c
133
134# SSP
135
136# I2C
137
138# Cache
139libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c \
140        ../../../libcpu/arm/shared/cache/cache_.h
141libbsp_a_CPPFLAGS += -I$(srcdir)/../../../libcpu/arm/shared/include
142
143# Start hooks
144libbsp_a_SOURCES += startup/bspstarthooks.c
145
146###############################################################################
147#                  Network                                                    #
148###############################################################################
149
150if HAS_NETWORKING
151
152noinst_PROGRAMS = network.rel
153
154network_rel_SOURCES = ../shared/lpc/network/lpc-ethernet.c
155network_rel_CPPFLAGS = $(AM_CPPFLAGS) -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ -D__BSD_VISIBLE
156network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
157
158libbsp_a_LIBADD += network.rel
159
160endif
161
162###############################################################################
163#                  Special Rules                                              #
164###############################################################################
165
166DISTCLEANFILES = include/bspopts.h
167
168include $(srcdir)/preinstall.am
169include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.