source: rtems/c/src/lib/libbsp/sh/shsim/Makefile.am @ 2858939a

5
Last change on this file since 2858939a was 2858939a, checked in by Sebastian Huber <sebastian.huber@…>, on 12/09/15 at 11:03:49

bsps: Delete superfluous bsp_pretasking_hook()

Use the bsp_predriver_hook() instead.

Update #2408.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
5include_bspdir = $(includedir)/bsp
6include_bsp_HEADERS = include/syscall.h
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
17
18nodist_include_HEADERS += ../../shared/include/coverhd.h
19
20noinst_LIBRARIES = libbspstart.a
21libbspstart_a_SOURCES = start/start.S
22project_lib_DATA = start.$(OBJEXT)
23
24dist_project_lib_DATA += startup/linkcmds
25dist_project_lib_DATA += startup/linkcmds.sim
26
27noinst_LIBRARIES += libbsp.a
28libbsp_a_SOURCES =
29
30# startup
31libbsp_a_SOURCES += ../../shared/bsplibc.c
32libbsp_a_SOURCES += ../../shared/bsppost.c
33libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
34libbsp_a_SOURCES += ../shared/startup/bspstart.c
35libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
36libbsp_a_SOURCES += ../../shared/bspclean.c
37libbsp_a_SOURCES += ../../shared/sbrk.c ../../shared/bootcard.c
38libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
39libbsp_a_SOURCES += ../shared/bsphwinit.c
40libbsp_a_SOURCES += startup/sysexit.c
41
42# clock
43libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
44
45# console
46libbsp_a_SOURCES += ../../shared/console-polled.c
47libbsp_a_SOURCES += console/console-io.c
48libbsp_a_SOURCES += console/console-support.S
49libbsp_a_SOURCES += console/console-debugio.c
50
51# timer
52libbsp_a_SOURCES += ../../shared/timerstub.c
53
54libbsp_a_LIBADD = \
55    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel \
56    ../../../libcpu/@RTEMS_CPU@/cache.rel
57
58include $(srcdir)/preinstall.am
59include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.