source: rtems/c/src/lib/libbsp/m68k/mvme147/Makefile.am @ 1e23c47

5
Last change on this file since 1e23c47 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
10noinst_PROGRAMS =
11
12
13## Zilog component header files
14
15EXTRA_DIST += ../../m68k/shared/start/start.S
16start.$(OBJEXT): ../../m68k/shared/start/start.S
17        $(CPPASCOMPILE) -o $@ -c $<
18project_lib_DATA = start.$(OBJEXT)
19
20project_lib_DATA += linkcmds
21
22noinst_LIBRARIES = libbsp.a
23libbsp_a_SOURCES =
24
25# startup
26libbsp_a_SOURCES += startup/bspclean.c \
27    startup/bspstart.c ../../shared/bootcard.c \
28    ../../shared/getentropy-cpucounter.c \
29    ../../shared/bsppredriverhook.c \
30    ../../shared/bspgetworkarea.c ../../shared/sbrk.c \
31    ../../shared/setvec.c ../../shared/gnatinstallhandler.c
32libbsp_a_SOURCES += ../../shared/bspreset.c
33# clock
34libbsp_a_SOURCES += clock/ckinit.c
35# console
36libbsp_a_SOURCES += console/console.c ../../shared/dummy_printk_support.c
37# timer
38libbsp_a_SOURCES += timer/timer.c timer/timerisr.S
39
40libbsp_a_SOURCES += ../../../../../../bsps/m68k/shared/cache/cache.c
41
42libbsp_a_LIBADD = \
43    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
44
45EXTRA_DIST += times
46
47include $(top_srcdir)/../../../../automake/local.am
48include $(srcdir)/../../../../../../bsps/m68k/mvme147/headers.am
Note: See TracBrowser for help on using the repository browser.