source: rtems/c/src/lib/libbsp/v850/gdbv850sim/Makefile.am @ 5b45d51

4.115
Last change on this file since 5b45d51 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 
1##
2##
3
4ACLOCAL_AMFLAGS = -I ../../../../aclocal
5
6include $(top_srcdir)/../../../../automake/compile.am
7include $(top_srcdir)/../../bsp.am
8
9include_bspdir = $(includedir)/bsp
10
11dist_project_lib_DATA = bsp_specs
12
13include_HEADERS = include/bsp.h
14include_HEADERS += ../../shared/include/tm27.h
15include_bsp_HEADERS = include/syscall.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES = include/bspopts.h
20noinst_PROGRAMS =
21
22nodist_include_HEADERS += ../../shared/include/coverhd.h
23
24EXTRA_DIST = start/start.S
25start.$(OBJEXT): start/start.S
26        $(CPPASCOMPILE) -o $@ -c $<
27project_lib_DATA = start.$(OBJEXT)
28
29dist_project_lib_DATA += startup/linkcmds
30
31libbsp_a_SOURCES = ../../shared/bspclean.c
32libbsp_a_SOURCES += ../../shared/bsplibc.c
33libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
34libbsp_a_SOURCES += ../../shared/bsppretaskinghook.c
35libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
36libbsp_a_SOURCES += ../../shared/bsppost.c
37libbsp_a_SOURCES += ../../shared/bspstart.c
38libbsp_a_SOURCES += ../../shared/bootcard.c
39libbsp_a_SOURCES += ../../shared/sbrk.c
40libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
41libbsp_a_SOURCES += startup/bspreset.c
42libbsp_a_SOURCES += ../../v850/shared/crt1.c
43libbsp_a_SOURCES += startup/trap.S
44
45libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
46libbsp_a_SOURCES += ../../shared/console-polled.c
47libbsp_a_SOURCES += console/console-io.c
48libbsp_a_SOURCES += ../../shared/timerstub.c
49
50# Cache
51libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
52libbsp_a_SOURCES += ../../shared/include/cache_.h
53libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
54
55noinst_LIBRARIES = libbsp.a
56
57include $(srcdir)/preinstall.am
58include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.