source: rtems/c/src/lib/libbsp/m68k/mrm332/Makefile.am @ 2f7a25c

5
Last change on this file since 2f7a25c was 642ef00, checked in by Sebastian Huber <sebastian.huber@…>, on 11/27/17 at 05:23:29

bsps: Provide <tm27.h> in each BSP

Since the <tm27.h> is highly BSP-dependent and used only by the tm27
test program we must provide this header file for each BSP. Without the
preinstall build target each header file must have a unique source
header file.

Update #3254.

  • Property mode set to 100644
File size: 1.4 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/mrm332.h
17
18EXTRA_DIST = times
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 += startup/start_c.c \
31    ../../shared/bspstart.c startup/bsppredriverhook.c \
32    ../../shared/bootcard.c ../../shared/sbrk.c \
33    ../../shared/getentropy-cpucounter.c \
34    ../../shared/bspclean.c \
35    ../../shared/setvec.c \
36    ../../shared/bspgetworkarea.c ../../shared/gnatinstallhandler.c
37libbsp_a_SOURCES += ../../shared/bspreset.c
38# clock
39libbsp_a_SOURCES += clock/ckinit.c
40# console
41libbsp_a_SOURCES += console/console.c console/sci.c console/sci.h
42# spurious
43libbsp_a_SOURCES += spurious/spinit.c
44# timer
45libbsp_a_SOURCES += timer/timer.c
46
47libbsp_a_LIBADD = \
48    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
49    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
50
51include $(srcdir)/preinstall.am
52include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.