source: rtems/c/src/lib/libbsp/bfin/bf537Stamp/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 
[61f8fb0e]1ACLOCAL_AMFLAGS = -I ../../../../aclocal
[33a2faa]2EXTRA_DIST =
[61f8fb0e]3
4include $(top_srcdir)/../../../../automake/compile.am
[f3ce8f41]5include $(top_srcdir)/../../bsp.am
[61f8fb0e]6
[2afb22b]7dist_project_lib_DATA = startup/bsp_specs
[13374cf]8
[61f8fb0e]9DISTCLEANFILES = include/bspopts.h
10
11noinst_PROGRAMS =
12
13
[ec32100]14EXTRA_DIST += start/start.S
15start.$(OBJEXT): start/start.S
16        $(CPPASCOMPILE) -o $@ -c $<
[61f8fb0e]17project_lib_DATA = start.$(OBJEXT)
18
[2afb22b]19project_lib_DATA += linkcmds
[61f8fb0e]20
[ec32100]21noinst_LIBRARIES = libbsp.a
[64eb0c7]22libbsp_a_SOURCES =
[e94666d]23
[ca4602e]24libbsp_a_SOURCES += \
[2858939a]25        startup/bspstart.c \
[61f8fb0e]26        ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/setvec.c \
[018e3821]27        ../../shared/bootcard.c ../../shared/gnatinstallhandler.c \
[ca4895c]28        ../../shared/getentropy-cpucounter.c \
[2a65e6d5]29        ../../shared/bspgetworkarea.c
[3dd381f]30libbsp_a_SOURCES += ../../shared/bspreset.c
[61f8fb0e]31
[6ab0094]32libbsp_a_SOURCES += console/console.c
[4cf93658]33libbsp_a_SOURCES += ../../../../../../bsps/bfin/shared/cache/cache.c
[61f8fb0e]34
35if HAS_NETWORKING
[d8d6a08]36libbsp_a_SOURCES += network/networkconfig.c
[61f8fb0e]37endif
38
[6ab0094]39libbsp_a_LIBADD  = ../../../libcpu/@RTEMS_CPU@/mmu.rel
[61f8fb0e]40libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/interrupt.rel
41libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/uart.rel
42libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/clock.rel
43libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/rtc.rel
44libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/timer.rel
45
[6ab0094]46if HAS_NETWORKING
47libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/network.rel
48endif
49
[61f8fb0e]50include $(top_srcdir)/../../../../automake/local.am
[2afb22b]51include $(srcdir)/../../../../../../bsps/bfin/bf537Stamp/headers.am
Note: See TracBrowser for help on using the repository browser.