source: rtems/c/src/lib/libbsp/sh/gensh4/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.4 KB
RevLine 
[fe8bc62f]1ACLOCAL_AMFLAGS = -I ../../../../aclocal
[33a2faa]2EXTRA_DIST =
[96462044]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
[96462044]10
[ec32100]11EXTRA_DIST += start/start.S
12start.$(OBJEXT): start/start.S
13        $(CPPASCOMPILE) -o $@ -c $<
[db3fa14]14project_lib_DATA = start.$(OBJEXT)
[38e4124f]15
[2afb22b]16project_lib_DATA += linkcmds
17dist_project_lib_DATA += startup/linkcmds.rom
18dist_project_lib_DATA += startup/linkcmds.rom2ram
[38e4124f]19
[ec32100]20noinst_LIBRARIES = libbsp.a
[64eb0c7]21libbsp_a_SOURCES =
[e94666d]22
[64eb0c7]23# startup
[ca4602e]24libbsp_a_SOURCES += \
[24d09194]25    ../../shared/bsppredriverhook.c ../shared/startup/bspstart.c \
[2858939a]26    ../../shared/bspgetworkarea.c \
[558bc25]27    ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/bootcard.c \
[ca4895c]28    ../../shared/getentropy-cpucounter.c \
[11a6c97]29    ../../shared/gnatinstallhandler.c ../shared/bsphwinit.c
[3dd381f]30libbsp_a_SOURCES += ../../shared/bspreset.c
[f2969b5]31libbsp_a_SOURCES += startup/cpu_asm.c startup/ispsh7750.c
32libbsp_a_SOURCES += clock/ckinit.c
33libbsp_a_SOURCES += timer/timer.c
[64eb0c7]34# console
35libbsp_a_SOURCES += console/console.c ../../shared/dummy_printk_support.c
[f2969b5]36libbsp_a_SOURCES += console/sh4uart.c
[64eb0c7]37# hw_init
38libbsp_a_SOURCES += hw_init/hw_init.c
[1d0ee80e]39
[2f91de2d]40# Cache
[4cf93658]41libbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
[7a5a3a41]42
[33a2faa]43EXTRA_DIST += times
[d0d6a5c]44
[7184977]45include $(top_srcdir)/../../../../automake/local.am
[2afb22b]46include $(srcdir)/../../../../../../bsps/sh/gensh4/headers.am
Note: See TracBrowser for help on using the repository browser.