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

5
Last change on this file since f3ce8f41 was f3ce8f41, checked in by Sebastian Huber <sebastian.huber@…>, on 01/02/18 at 07:00:02

bsps: Include bsp.am in all BSP Makefile.am

Update #3254.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4include $(top_srcdir)/../../bsp.am
5
6include_bspdir = $(includedir)/bsp
7include_bsp_HEADERS = include/syscall.h
8
9dist_project_lib_DATA = bsp_specs
10
11include_HEADERS = include/bsp.h
12include_HEADERS += include/tm27.h
13
14nodist_include_HEADERS = include/bspopts.h
15nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
16nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
17DISTCLEANFILES = include/bspopts.h
18
19
20noinst_LIBRARIES = libbspstart.a
21libbspstart_a_SOURCES = start/start.S
22project_lib_DATA = start.$(OBJEXT)
23
24dist_project_lib_DATA += startup/linkcmds
25
26noinst_LIBRARIES += libbsp.a
27libbsp_a_SOURCES =
28
29# startup
30libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
31libbsp_a_SOURCES += ../shared/startup/bspstart.c
32libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
33libbsp_a_SOURCES += ../../shared/bspclean.c
34libbsp_a_SOURCES += ../../shared/sbrk.c
35libbsp_a_SOURCES += ../../shared/bootcard.c
36libbsp_a_SOURCES += ../../shared/getentropy-cpucounter.c
37libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
38libbsp_a_SOURCES += ../shared/bsphwinit.c
39libbsp_a_SOURCES += startup/sysexit.c
40libbsp_a_SOURCES += ../../shared/bspreset.c
41libbsp_a_SOURCES += startup/cpu_asm.c
42libbsp_a_SOURCES += startup/ispshgdb.c
43
44# clock
45libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
46
47# console
48libbsp_a_SOURCES += ../../shared/console-polled.c
49libbsp_a_SOURCES += console/console-io.c
50libbsp_a_SOURCES += console/console-support.S
51libbsp_a_SOURCES += console/console-debugio.c
52
53# timer
54libbsp_a_SOURCES += ../../shared/timerstub.c
55
56# Cache
57libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
58libbsp_a_SOURCES += ../../shared/include/cache_.h
59libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
60
61include $(srcdir)/preinstall.am
62include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.