source: rtems/c/src/lib/libcpu/bfin/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.9 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../aclocal
2
3include $(top_srcdir)/../../../automake/compile.am
4
5EXTRA_DIST =
6
7noinst_PROGRAMS =
8
9
10############
11# Start of bf52x files
12if bf52x
13
14## INTERRUPT
15noinst_PROGRAMS += bf52x/interrupt.rel
16bf52x_interrupt_rel_SOURCES = bf52x/interrupt/interrupt.c \
17                              bf52x/interrupt/interrupt.h
18bf52x_interrupt_rel_CPPFLAGS = $(AM_CPPFLAGS)
19bf52x_interrupt_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
20
21endif
22# endof bf52x
23############
24
25noinst_PROGRAMS += mmu.rel
26mmu_rel_SOURCES = mmu/mmu.c
27mmu_rel_CPPFLAGS = $(AM_CPPFLAGS)
28mmu_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
29
30if bf52x
31
32else
33noinst_PROGRAMS += interrupt.rel
34interrupt_rel_SOURCES = interrupt/interrupt.c
35interrupt_rel_CPPFLAGS = $(AM_CPPFLAGS)
36interrupt_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
37
38endif
39
40noinst_PROGRAMS += clock.rel
41clock_rel_SOURCES = clock/clock.c
42clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
43clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
44
45noinst_PROGRAMS += rtc.rel
46rtc_rel_SOURCES = clock/rtc.c clock/rtc.h
47rtc_rel_CPPFLAGS = $(AM_CPPFLAGS)
48rtc_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
49
50noinst_PROGRAMS += uart.rel
51uart_rel_SOURCES = serial/uart.c
52uart_rel_CPPFLAGS = $(AM_CPPFLAGS)
53uart_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
54
55noinst_PROGRAMS += sport.rel
56sport_rel_SOURCES = serial/sport.c
57sport_rel_CPPFLAGS = $(AM_CPPFLAGS)
58sport_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
59
60noinst_PROGRAMS += spi.rel
61spi_rel_SOURCES = serial/spi.c
62spi_rel_CPPFLAGS = $(AM_CPPFLAGS)
63spi_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
64
65noinst_PROGRAMS += twi.rel
66twi_rel_SOURCES = serial/twi.c
67twi_rel_CPPFLAGS = $(AM_CPPFLAGS)
68twi_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
69
70noinst_PROGRAMS += timer.rel
71timer_rel_SOURCES = timer/timer.c
72timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
73timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
74
75if HAS_NETWORKING
76## network
77noinst_PROGRAMS += network.rel
78network_rel_SOURCES = network/ethernet.c
79network_rel_CPPFLAGS = $(AM_CPPFLAGS)
80network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
81endif
82
83include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.