source: rtems/c/src/lib/libbsp/lm32/lm32_evr/Makefile.am @ e870941

4.115
Last change on this file since e870941 was 0b9fd991, checked in by Sebastian Huber <sebastian.huber@…>, on 02/21/14 at 16:12:16

bsps: Add empty cache manager

This is necessary to add tests that use the cache manager. For example
to get better estimates of worst-case timings.

  • Property mode set to 100644
File size: 1.7 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
5include_bspdir = $(includedir)/bsp
6
7dist_project_lib_DATA = bsp_specs
8
9include_HEADERS = include/bsp.h
10include_HEADERS += include/tm27.h
11
12nodist_include_HEADERS = include/bspopts.h
13nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
14DISTCLEANFILES = include/bspopts.h
15
16noinst_PROGRAMS =
17
18include_HEADERS += include/coverhd.h
19include_HEADERS += include/system_conf.h
20
21noinst_LIBRARIES = libbspstart.a
22libbspstart_a_SOURCES = ../../lm32/shared/start/start.S
23project_lib_DATA = start.$(OBJEXT)
24
25dist_project_lib_DATA += startup/linkcmds
26
27noinst_LIBRARIES += libbsp.a
28libbsp_a_SOURCES =
29libbsp_a_LIBADD =
30
31# startup
32libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
33    ../../shared/bsppost.c ../shared/startup/bspstart.c \
34    ../../shared/bspreset.c ../../shared/bsppretaskinghook.c \
35    ../../shared/bspgetworkarea.c ../../shared/bootcard.c \
36    ../../shared/sbrk.c ../../shared/setvec.c \
37    ../../shared/gnatinstallhandler.c
38# clock
39libbsp_a_SOURCES += ../../lm32/shared/clock/ckinit.c
40# console
41libbsp_a_SOURCES += ../../lm32/shared/console/console.c ../../lm32/shared/console/uart.c
42# timer
43libbsp_a_SOURCES += ../../lm32/shared/timer/timer.c
44
45# Cache
46libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
47libbsp_a_SOURCES += ../../shared/include/cache_.h
48libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
49
50if HAS_NETWORKING
51noinst_PROGRAMS += network.rel
52network_rel_SOURCES = ../../lm32/shared/tsmac/tsmac.c
53network_rel_CPPFLAGS = $(AM_CPPFLAGS) -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
54network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
55libbsp_a_LIBADD += network.rel
56endif
57
58
59include $(srcdir)/preinstall.am
60include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.