source: rtems/c/src/lib/libbsp/m68k/mvme147s/Makefile.am @ 57f96b9

5
Last change on this file since 57f96b9 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.7 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 += ../../shared/bspclean.c \
34    ../../shared/bsppredriverhook.c \
35    startup/bspstart.c ../../shared/bootcard.c \
36    ../../shared/getentropy-cpucounter.c \
37    ../../shared/setvec.c \
38    ../../shared/bspgetworkarea.c ../../shared/setvec.c \
39    ../../shared/sbrk.c ../../shared/gnatinstallhandler.c
40libbsp_a_SOURCES += ../../shared/bspreset.c
41# clock
42libbsp_a_SOURCES += ../mvme147/clock/ckinit.c
43# console
44libbsp_a_SOURCES += ../mvme147/console/console.c \
45    ../../shared/dummy_printk_support.c
46# timer
47libbsp_a_SOURCES += ../mvme147/timer/timer.c ../mvme147/timer/timerisr.S
48
49if HAS_MP
50# shmsupp
51libbsp_a_SOURCES += shmsupp/addrconv.c shmsupp/getcfg.c shmsupp/lock.c \
52    shmsupp/mpisr.c
53endif
54
55libbsp_a_LIBADD = \
56    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
57    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
58
59EXTRA_DIST = times
60
61include $(srcdir)/preinstall.am
62include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.