source: rtems/c/src/lib/libbsp/bfin/TLL6527M/Makefile.am @ 05015dc1

5
Last change on this file since 05015dc1 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: 1.3 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2EXTRA_DIST =
3
4include $(top_srcdir)/../../../../automake/compile.am
5include $(top_srcdir)/../../bsp.am
6
7dist_project_lib_DATA = startup/bsp_specs
8
9DISTCLEANFILES = include/bspopts.h
10
11noinst_PROGRAMS =
12
13
14EXTRA_DIST += ../shared/start/start.S
15start.$(OBJEXT): ../shared/start/start.S
16        $(CPPASCOMPILE) -o $@ -c $<
17project_lib_DATA = start.$(OBJEXT)
18
19project_lib_DATA += linkcmds
20
21noinst_LIBRARIES = libbsp.a
22
23libbsp_a_SOURCES = \
24        startup/bspstart.c \
25        ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/setvec.c \
26        ../../shared/bootcard.c ../../shared/gnatinstallhandler.c \
27        ../../shared/getentropy-cpucounter.c \
28        ../../shared/bspgetworkarea.c
29libbsp_a_SOURCES += ../../shared/bspreset.c
30
31libbsp_a_SOURCES += console/console.c
32libbsp_a_SOURCES += ../../../../../../bsps/bfin/shared/cache/cache.c
33
34libbsp_a_LIBADD  = ../../../libcpu/@RTEMS_CPU@/mmu.rel
35libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/interrupt.rel
36libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/uart.rel
37libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/clock.rel
38libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/rtc.rel
39libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/timer.rel
40
41EXTRA_DIST += times
42
43include $(top_srcdir)/../../../../automake/local.am
44include $(srcdir)/../../../../../../bsps/bfin/TLL6527M/headers.am
Note: See TracBrowser for help on using the repository browser.