source: rtems/c/src/lib/libbsp/m68k/mvme147/Makefile.am @ 3dd381f

5
Last change on this file since 3dd381f was 3dd381f, checked in by Sebastian Huber <sebastian.huber@…>, on 11/21/17 at 11:50:58

bsps: Simplify RTEMS_BSP_CLEANUP_OPTIONS

Remove BSP-specific defaults for RTEMS_BSP_CLEANUP_OPTIONS to simplify
the BSP configuration and documentation. Change defaults to:

BSP_PRESS_KEY_FOR_RESET=0
BSP_RESET_BOARD_AT_EXIT=1
BSP_PRINT_EXCEPTION_CONTEXT=1

  • 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
15noinst_PROGRAMS =
16
17include_HEADERS += include/coverhd.h
18
19## Zilog component header files
20include_rtems_zilogdir = $(includedir)/rtems/zilog
21include_rtems_zilog_HEADERS = ../../shared/include/zilog/z8530.h
22
23noinst_LIBRARIES = libbspstart.a
24libbspstart_a_SOURCES = ../../m68k/shared/start/start.S
25project_lib_DATA = start.$(OBJEXT)
26
27dist_project_lib_DATA += startup/linkcmds
28
29noinst_LIBRARIES += libbsp.a
30libbsp_a_SOURCES =
31
32# startup
33libbsp_a_SOURCES += startup/bspclean.c \
34    startup/bspstart.c ../../shared/bootcard.c \
35    ../../shared/getentropy-cpucounter.c \
36    ../../shared/bsppredriverhook.c \
37    ../../shared/bspgetworkarea.c ../../shared/sbrk.c \
38    ../../shared/setvec.c ../../shared/gnatinstallhandler.c
39libbsp_a_SOURCES += ../../shared/bspreset.c
40# clock
41libbsp_a_SOURCES += clock/ckinit.c
42# console
43libbsp_a_SOURCES += console/console.c ../../shared/dummy_printk_support.c
44# timer
45libbsp_a_SOURCES += timer/timer.c timer/timerisr.S
46
47libbsp_a_LIBADD = \
48    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
49    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
50
51EXTRA_DIST = times
52
53include $(srcdir)/preinstall.am
54include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.