source: rtems/c/src/lib/libcpu/mips/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: 1.0 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../aclocal
2
3include $(top_srcdir)/../../../automake/compile.am
4
5EXTRA_DIST =
6
7noinst_PROGRAMS =
8
9## interrupts
10
11if rm52xx
12interrupts_CPPFLAGS = -DRM52XX
13endif
14
15if tx39
16interrupts_CPPFLAGS = -DTX39
17endif
18
19if tx49
20interrupts_CPPFLAGS = -DTX49
21endif
22
23noinst_PROGRAMS += shared/interrupts.rel
24shared_interrupts_rel_SOURCES = shared/interrupts/installisrentries.c \
25    shared/interrupts/isr_entries.S shared/interrupts/isr_entries.h
26shared_interrupts_rel_CPPFLAGS = $(AM_CPPFLAGS) $(interrupts_CPPFLAGS)
27shared_interrupts_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
28if tx39
29endif
30
31if tx49
32noinst_PROGRAMS += tx49/timer.rel
33tx49_timer_rel_SOURCES = timer/timer.c timer/gettime.S
34tx49_timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
35tx49_timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
36endif
37
38if au1x00
39endif
40
41if rm52xx
42noinst_PROGRAMS += rm52xx/timer.rel
43rm52xx_timer_rel_SOURCES = timer/timer.c timer/gettime.S
44rm52xx_timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
45rm52xx_timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
46endif
47
48include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.