source: rtems/c/src/lib/libbsp/m32c/m32cbsp/Makefile.am @ 6e868d87

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