source: rtems/c/src/lib/libcpu/sparc/Makefile.am @ a4570829

5
Last change on this file since a4570829 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: 645 bytes
Line 
1ACLOCAL_AMFLAGS = -I ../../../aclocal
2
3include $(top_srcdir)/../../../automake/compile.am
4
5noinst_PROGRAMS =
6
7noinst_PROGRAMS += syscall.rel
8syscall_rel_SOURCES = syscall/syscall.S syscall/syscall.h
9syscall_rel_CPPFLAGS = $(AM_CPPFLAGS)
10syscall_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
11
12noinst_PROGRAMS += reg_win.rel
13reg_win_rel_SOURCES = reg_win/window.S
14reg_win_rel_CPPFLAGS = $(AM_CPPFLAGS)
15reg_win_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
16
17noinst_PROGRAMS += access.rel
18access_rel_SOURCES = access/access.S access/access_le.c
19access_rel_CPPFLAGS = $(AM_CPPFLAGS)
20access_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
21
22include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.