source: rtems/c/src/lib/libbsp/m68k/mcf5329/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
10noinst_PROGRAMS =
11
12
13EXTRA_DIST += start/start.S
14start.$(OBJEXT): start/start.S
15        $(CPPASCOMPILE) -o $@ -c $<
16project_lib_DATA = start.$(OBJEXT)
17
18project_lib_DATA += linkcmds
19dist_project_lib_DATA += startup/linkcmdsflash
20
21noinst_LIBRARIES = libbsp.a
22libbsp_a_SOURCES =
23
24# startup
25libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsppredriverhook.c \
26    ../../shared/bspreset_loop.c \
27    ../../shared/bspgetworkarea.c \
28    startup/init5329.c startup/bspstart.c startup/cfinit.c\
29    ../../shared/bootcard.c \
30    ../../shared/getentropy-cpucounter.c \
31    ../../shared/sbrk.c ../../shared/setvec.c \
32    ../../shared/gnatinstallhandler.c
33# clock
34libbsp_a_SOURCES += clock/clock.c ../../../shared/clockdrv_shell.h
35# console
36libbsp_a_SOURCES += console/console.c
37# timer
38libbsp_a_SOURCES += timer/timer.c
39
40if HAS_NETWORKING
41libbsp_a_SOURCES += network/network.c
42endif
43
44libbsp_a_SOURCES += ../../../../../../bsps/m68k/shared/cache/cache-mcf532x.c
45
46libbsp_a_LIBADD = \
47    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
48
49include $(top_srcdir)/../../../../automake/local.am
50include $(srcdir)/../../../../../../bsps/m68k/mcf5329/headers.am
Note: See TracBrowser for help on using the repository browser.