source: rtems/c/src/lib/libbsp/sh/shsim/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: 1.5 KB
RevLine 
[fe8bc62f]1ACLOCAL_AMFLAGS = -I ../../../../aclocal
[33a2faa]2EXTRA_DIST =
[86ec6ed]3
[7a5a3a41]4include $(top_srcdir)/../../../../automake/compile.am
[f3ce8f41]5include $(top_srcdir)/../../bsp.am
[7a5a3a41]6
[2afb22b]7dist_project_lib_DATA = startup/bsp_specs
[c06b3fa]8
[db3fa14]9DISTCLEANFILES = include/bspopts.h
[2a7f9a28]10
[d0d6a5c]11
[ec32100]12EXTRA_DIST += start/start.S
13start.$(OBJEXT): start/start.S
14        $(CPPASCOMPILE) -o $@ -c $<
[db3fa14]15project_lib_DATA = start.$(OBJEXT)
[7a5a3a41]16
[2afb22b]17project_lib_DATA += linkcmds
[7a5a3a41]18
[ec32100]19noinst_LIBRARIES = libbsp.a
[64eb0c7]20libbsp_a_SOURCES =
[e94666d]21
[64eb0c7]22# startup
[a531683]23libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
24libbsp_a_SOURCES += ../shared/startup/bspstart.c
25libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
26libbsp_a_SOURCES += ../../shared/bspclean.c
[ca4895c]27libbsp_a_SOURCES += ../../shared/sbrk.c
28libbsp_a_SOURCES += ../../shared/bootcard.c
29libbsp_a_SOURCES += ../../shared/getentropy-cpucounter.c
[a531683]30libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
31libbsp_a_SOURCES += ../shared/bsphwinit.c
[139a3ab]32libbsp_a_SOURCES += startup/sysexit.c
[3dd381f]33libbsp_a_SOURCES += ../../shared/bspreset.c
[604f080c]34libbsp_a_SOURCES += startup/cpu_asm.c
35libbsp_a_SOURCES += startup/ispshgdb.c
[a531683]36
[64eb0c7]37# clock
38libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
[a9285f5]39
[64eb0c7]40# console
41libbsp_a_SOURCES += ../../shared/console-polled.c
[a531683]42libbsp_a_SOURCES += console/console-io.c
43libbsp_a_SOURCES += console/console-support.S
44libbsp_a_SOURCES += console/console-debugio.c
45
[542e7b3]46# timer
47libbsp_a_SOURCES += ../../shared/timerstub.c
[1d0ee80e]48
[2f91de2d]49# Cache
[4cf93658]50libbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
[a9285f5]51
[e665ad1]52include $(top_srcdir)/../../../../automake/local.am
[2afb22b]53include $(srcdir)/../../../../../../bsps/sh/shsim/headers.am
Note: See TracBrowser for help on using the repository browser.