source: rtems/c/src/lib/libbsp/arm/lpc176x/Makefile.am @ 37030e3

5
Last change on this file since 37030e3 was 37030e3, checked in by Sebastian Huber <sebastian.huber@…>, on 12/09/15 at 07:05:57

bsps: Call bsp_work_area_initialize() early

Call bsp_work_area_initialize() before bsp_start(). This allows
bsp_start() to use malloc() etc. which is beneficial for systems with a
plug-and-play hardware enumeration.

Update #2408.

  • Property mode set to 100644
File size: 5.1 KB
Line 
1##
2#
3# @file
4#
5# @brief Makefile of LibBSP for the LPC176x boards.
6#
7
8ACLOCAL_AMFLAGS = -I ../../../../aclocal
9
10include $(top_srcdir)/../../../../automake/compile.am
11
12include_bspdir = $(includedir)/bsp
13
14dist_project_lib_DATA = bsp_specs
15
16
17# ----------------------------
18# ------  Headers
19# ----------------------------
20
21include_HEADERS = include/bsp.h
22
23nodist_include_HEADERS = ../../shared/include/coverhd.h
24nodist_include_HEADERS += include/bspopts.h
25
26nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
27
28include_bsp_HEADERS =
29include_bsp_HEADERS += ../../shared/include/utility.h
30include_bsp_HEADERS += ../../shared/include/irq-generic.h
31include_bsp_HEADERS += ../../shared/include/irq-info.h
32include_bsp_HEADERS += ../../shared/include/stackalloc.h
33include_bsp_HEADERS += ../../shared/include/uart-output-char.h
34include_bsp_HEADERS += ../shared/include/start.h
35include_bsp_HEADERS += ../shared/lpc/include/lpc-timer.h
36include_bsp_HEADERS += ../shared/lpc/include/lpc-i2s.h
37include_bsp_HEADERS += ../shared/lpc/include/lpc-dma.h
38include_bsp_HEADERS += ../shared/armv7m/include/armv7m-irq.h
39include_bsp_HEADERS += include/dma.h
40include_bsp_HEADERS += include/io-defs.h
41include_bsp_HEADERS += include/io.h
42include_bsp_HEADERS += include/common-types.h
43include_bsp_HEADERS += include/gpio-defs.h
44include_bsp_HEADERS += include/lpc-gpio.h
45include_bsp_HEADERS += include/can.h
46include_bsp_HEADERS += include/can-defs.h
47include_bsp_HEADERS += include/pwmout.h
48include_bsp_HEADERS += include/pwmout-defs.h
49include_bsp_HEADERS += include/adc.h
50include_bsp_HEADERS += include/adc-defs.h
51include_bsp_HEADERS += include/timer-defs.h
52include_bsp_HEADERS += include/timer.h
53include_bsp_HEADERS += include/watchdog.h
54include_bsp_HEADERS += include/watchdog-defs.h
55include_bsp_HEADERS += include/irq.h
56include_bsp_HEADERS += include/lpc176x.h
57include_bsp_HEADERS += include/lpc-clock-config.h
58include_bsp_HEADERS += include/system-clocks.h
59include_bsp_HEADERS += include/mbed-pinmap.h
60
61include_HEADERS += ../../shared/include/tm27.h
62
63
64# ----------------------------
65# ------  Data
66# ----------------------------
67
68noinst_LIBRARIES = libbspstart.a
69
70libbspstart_a_SOURCES = ../shared/start/start.S
71
72project_lib_DATA = start.$(OBJEXT)
73project_lib_DATA += startup/linkcmds
74
75EXTRA_DIST =
76EXTRA_DIST += startup/linkcmds.lpc1768_mbed
77EXTRA_DIST += startup/linkcmds.lpc1768_mbed_ahb_ram
78EXTRA_DIST += startup/linkcmds.lpc1768_mbed_ahb_ram_eth
79
80
81# ----------------------------
82# ------  LibBSP
83# ----------------------------
84
85noinst_LIBRARIES += libbsp.a
86
87libbsp_a_SOURCES =
88libbsp_a_CPPFLAGS =
89libbsp_a_LIBADD =
90
91# Shared
92libbsp_a_SOURCES += ../../shared/bootcard.c
93libbsp_a_SOURCES += ../../shared/bspclean.c
94libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
95libbsp_a_SOURCES += ../../shared/bsplibc.c
96libbsp_a_SOURCES += ../../shared/bsppost.c
97libbsp_a_SOURCES += ../../shared/bsppretaskinghook.c
98libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
99libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
100libbsp_a_SOURCES += ../../shared/sbrk.c
101libbsp_a_SOURCES += ../../shared/src/stackalloc.c
102libbsp_a_SOURCES += ../../shared/src/uart-output-char.c
103
104# Startup
105libbsp_a_SOURCES += ../shared/startup/bsp-start-memcpy.S
106libbsp_a_SOURCES += startup/bspreset.c
107libbsp_a_SOURCES += startup/bspstart.c
108
109# IRQ
110libbsp_a_SOURCES += ../../shared/src/irq-default-handler.c
111libbsp_a_SOURCES += ../../shared/src/irq-generic.c
112libbsp_a_SOURCES += ../../shared/src/irq-info.c
113libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
114libbsp_a_SOURCES += ../../shared/src/irq-server.c
115libbsp_a_SOURCES += ../../shared/src/irq-shell.c
116libbsp_a_SOURCES += ../shared/armv7m/irq/armv7m-irq.c
117libbsp_a_SOURCES += ../shared/armv7m/irq/armv7m-irq-dispatch.c
118libbsp_a_SOURCES += irq/irq.c
119
120# Console
121libbsp_a_SOURCES += ../../shared/console-termios-init.c
122libbsp_a_SOURCES += ../../shared/console-termios.c
123libbsp_a_SOURCES += console/console-config.c
124
125# Clock
126libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
127libbsp_a_SOURCES += ../shared/lpc/clock/lpc-clock-config.c
128libbsp_a_SOURCES += ../shared/armv7m/clock/armv7m-clock-config.c
129
130# RTC
131libbsp_a_SOURCES += ../../shared/tod.c \
132                        rtc/rtc-config.c
133
134# GPIO
135libbsp_a_SOURCES += gpio/lpc-gpio.c
136
137# CAN
138libbsp_a_SOURCES += can/can.c
139
140# PWMOUT
141libbsp_a_SOURCES += pwmout/pwmout.c
142
143# ADC
144libbsp_a_SOURCES += adc/adc.c
145
146# Timer
147libbsp_a_SOURCES += timer/timer.c
148
149# Benchmark Timer
150libbsp_a_SOURCES += benchmark_timer/benchmark_timer.c
151
152# Misc
153libbsp_a_SOURCES += misc/system-clocks.c
154libbsp_a_SOURCES += misc/dma.c
155libbsp_a_SOURCES += misc/dma-copy.c
156libbsp_a_SOURCES += misc/bspidle.c
157libbsp_a_SOURCES += misc/io.c
158libbsp_a_SOURCES += misc/restart.c
159
160# Watchdog
161libbsp_a_SOURCES += watchdog/watchdog.c
162
163# Cache
164libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
165libbsp_a_SOURCES += ../../../libcpu/arm/shared/include/cache_.h
166libbsp_a_CPPFLAGS += -I$(srcdir)/../../../libcpu/arm/shared/include
167
168# Start hooks
169libbsp_a_SOURCES += startup/bspstarthooks.c
170
171
172# ----------------------------
173# ------  Special Rules
174# ----------------------------
175
176DISTCLEANFILES = include/bspopts.h
177
178include $(srcdir)/preinstall.am
179include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.