source: rtems/c/src/lib/libbsp/arm/lpc32xx/Makefile.am @ 4cf93658

5
Last change on this file since 4cf93658 was 4cf93658, checked in by Sebastian Huber <sebastian.huber@…>, on 01/27/18 at 13:37:51

bsps: Rework cache manager implementation

The previous cache manager support used a single souce file
(cache_manager.c) which included an implementation header (cache_.h).
This required the use of specialized include paths to find the right
header file. Change this to include a generic implementation header
(cacheimpl.h) in specialized source files.

Use the following directories and files:

  • bsps/shared/cache
  • bsps/@RTEMS_CPU@/shared/cache
  • bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILY/start/cache.c

Update #3285.

  • Property mode set to 100644
File size: 4.2 KB
Line 
1##
2#
3# @file
4#
5# @brief Makefile of LibBSP for the LPC32XX boards.
6#
7
8ACLOCAL_AMFLAGS = -I ../../../../aclocal
9EXTRA_DIST =
10
11include $(top_srcdir)/../../../../automake/compile.am
12include $(top_srcdir)/../../bsp.am
13
14dist_project_lib_DATA = startup/bsp_specs
15
16###############################################################################
17#                  Header                                                     #
18###############################################################################
19
20###############################################################################
21#                  Data                                                       #
22###############################################################################
23
24EXTRA_DIST += ../shared/start/start.S
25start.$(OBJEXT): ../shared/start/start.S
26        $(CPPASCOMPILE) -o $@ -c $<
27project_lib_DATA = start.$(OBJEXT)
28
29project_lib_DATA += linkcmds
30dist_project_lib_DATA += startup/linkcmds.lpc32xx
31dist_project_lib_DATA += startup/linkcmds.lpc32xx_phycore
32dist_project_lib_DATA += startup/linkcmds.lpc32xx_mzx_stage_1
33dist_project_lib_DATA += startup/linkcmds.lpc32xx_mzx_stage_2
34dist_project_lib_DATA += startup/linkcmds.lpc32xx_mzx
35
36###############################################################################
37#                  LibBSP                                                     #
38###############################################################################
39
40noinst_LIBRARIES = libbsp.a
41
42libbsp_a_SOURCES =
43
44# Shared
45libbsp_a_SOURCES += ../../shared/bootcard.c
46libbsp_a_SOURCES += ../../shared/getentropy-cpucounter.c
47libbsp_a_SOURCES += ../../shared/bspclean.c
48libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
49libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
50libbsp_a_SOURCES += ../../shared/cpucounterdiff.c
51libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
52libbsp_a_SOURCES += ../../shared/sbrk.c
53libbsp_a_SOURCES += ../../shared/src/stackalloc.c
54libbsp_a_SOURCES += ../../shared/src/uart-output-char.c
55libbsp_a_SOURCES += ../shared/startup/bsp-start-memcpy.S
56libbsp_a_SOURCES += ../shared/arm-cp15-set-ttb-entries.c
57
58# Startup
59libbsp_a_SOURCES += startup/bspreset.c
60libbsp_a_SOURCES += startup/bspstart.c
61
62# IRQ
63libbsp_a_SOURCES += ../../shared/src/irq-default-handler.c
64libbsp_a_SOURCES += ../../shared/src/irq-generic.c
65libbsp_a_SOURCES += ../../shared/src/irq-info.c
66libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
67libbsp_a_SOURCES += ../../shared/src/irq-server.c
68libbsp_a_SOURCES += ../../shared/src/irq-shell.c
69libbsp_a_SOURCES += irq/irq.c
70
71# Console
72libbsp_a_SOURCES += ../../shared/console-termios-init.c
73libbsp_a_SOURCES += ../../shared/console-termios.c
74libbsp_a_SOURCES += console/console-config.c
75libbsp_a_SOURCES += console/hsu.c
76
77# Clock
78libbsp_a_SOURCES += ../shared/lpc/clock/lpc-clock-config.c
79libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
80
81# RTC
82libbsp_a_SOURCES += ../../shared/tod.c \
83        rtc/rtc-config.c
84
85# Misc
86libbsp_a_SOURCES += misc/boot.c
87libbsp_a_SOURCES += misc/emc.c
88libbsp_a_SOURCES += misc/i2c.c
89libbsp_a_SOURCES += misc/nand-mlc.c
90libbsp_a_SOURCES += misc/nand-mlc-erase-block-safe.c
91libbsp_a_SOURCES += misc/nand-mlc-read-blocks.c
92libbsp_a_SOURCES += misc/nand-mlc-write-blocks.c
93libbsp_a_SOURCES += misc/restart.c
94libbsp_a_SOURCES += misc/system-clocks.c
95libbsp_a_SOURCES += misc/timer.c
96libbsp_a_SOURCES += misc/nand-select.c
97libbsp_a_SOURCES += misc/idle-thread.c
98
99# SSP
100
101# I2C
102
103# Cache
104libbsp_a_SOURCES += ../../../../../../bsps/arm/shared/cache/cache-cp15.c
105
106# Start hooks
107libbsp_a_SOURCES += startup/bspstarthooks.c
108
109###############################################################################
110#                  Network                                                    #
111###############################################################################
112
113if HAS_NETWORKING
114libbsp_a_SOURCES += ../shared/lpc/network/lpc-ethernet.c
115endif
116
117###############################################################################
118#                  Special Rules                                              #
119###############################################################################
120
121DISTCLEANFILES = include/bspopts.h
122
123include $(top_srcdir)/../../../../automake/local.am
124include $(srcdir)/../../../../../../bsps/arm/lpc32xx/headers.am
Note: See TracBrowser for help on using the repository browser.