source: rtems/c/src/lib/libbsp/sh/gensh4/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
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
16include_HEADERS += include/sdram.h
17
18noinst_LIBRARIES = libbspstart.a
19libbspstart_a_SOURCES = start/start.S
20project_lib_DATA = start.$(OBJEXT)
21
22dist_project_lib_DATA += startup/linkcmds startup/linkcmds.rom \
23    startup/linkcmds.rom2ram
24
25noinst_LIBRARIES += libbsp.a
26libbsp_a_SOURCES =
27
28# startup
29libbsp_a_SOURCES += \
30    ../../shared/bsppredriverhook.c ../shared/startup/bspstart.c \
31    ../../shared/bspgetworkarea.c \
32    ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/bootcard.c \
33    ../../shared/getentropy-cpucounter.c \
34    ../../shared/gnatinstallhandler.c ../shared/bsphwinit.c
35libbsp_a_SOURCES += ../../shared/bspreset.c
36# console
37libbsp_a_SOURCES += console/console.c ../../shared/dummy_printk_support.c
38# hw_init
39libbsp_a_SOURCES += hw_init/hw_init.c
40
41libbsp_a_LIBADD = \
42    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
43    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel \
44    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/sci.rel \
45    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel \
46    ../../../libcpu/@RTEMS_CPU@/cache.rel
47
48EXTRA_DIST = times
49
50include $(srcdir)/preinstall.am
51include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.