source: rtems/c/src/lib/libbsp/avr/avrtest/Makefile.am @ 0b9fd991

4.115
Last change on this file since 0b9fd991 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    ../../shared/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
31    ../../shared/gnatinstallhandler.c
32clock_SOURCES = ../../shared/clock_driver_simidle.c
33console_SOURCES = ../../shared/console-polled.c console/console-io.c
34timer_SOURCES = ../../shared/timerstub.c
35
36noinst_LIBRARIES = libbsp.a
37libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
38    $(timer_SOURCES)
39
40# Cache
41libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
42libbsp_a_SOURCES += ../../shared/include/cache_.h
43libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
44
45include $(srcdir)/preinstall.am
46include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.