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

5
Last change on this file since e58e29fd was e58e29fd, checked in by Sebastian Huber <sebastian.huber@…>, on 11/24/17 at 06:58:55

Remove coverhd.h

This header file contained timing overhead values which are hard to
maintain.

Update #3254.

  • 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
15nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
16DISTCLEANFILES = include/bspopts.h
17noinst_PROGRAMS =
18
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 \
28    ../../shared/bsppredriverhook.c \
29    ../../shared/bspgetworkarea.c \
30    ../../shared/bspreset.c \
31    startup/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
32    ../../shared/getentropy-cpucounter.c \
33    ../../shared/gnatinstallhandler.c startup/crtn.S
34clock_SOURCES = ../../shared/clock_driver_simidle.c
35console_SOURCES = ../../shared/console-polled.c console/console-io.c \
36   console/syscalls.S
37timer_SOURCES = timer/timer.c
38
39noinst_LIBRARIES = libbsp.a
40libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
41    $(timer_SOURCES)
42
43# Cache
44libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
45libbsp_a_SOURCES += ../../shared/include/cache_.h
46libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
47
48include $(srcdir)/preinstall.am
49include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.