source: rtems/c/src/lib/libbsp/m68k/mrm332/Makefile.am @ 33a2faa

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

bsps: Add EXTRA_DIST to all BSP Makefile.am

This makes it possible to easily use

EXTRA_DIST += foobar

in fragments.

Update #3254.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2EXTRA_DIST =
3
4include $(top_srcdir)/../../../../automake/compile.am
5include $(top_srcdir)/../../bsp.am
6
7include_bspdir = $(includedir)/bsp
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
16DISTCLEANFILES = include/bspopts.h
17
18include_HEADERS += include/mrm332.h
19
20EXTRA_DIST += times
21
22noinst_LIBRARIES = libbspstart.a
23libbspstart_a_SOURCES = start/start.S
24project_lib_DATA = start.$(OBJEXT)
25
26dist_project_lib_DATA += startup/linkcmds
27
28noinst_LIBRARIES += libbsp.a
29libbsp_a_SOURCES =
30
31# startup
32libbsp_a_SOURCES += startup/start_c.c \
33    ../../shared/bspstart.c startup/bsppredriverhook.c \
34    ../../shared/bootcard.c ../../shared/sbrk.c \
35    ../../shared/getentropy-cpucounter.c \
36    ../../shared/bspclean.c \
37    ../../shared/setvec.c \
38    ../../shared/bspgetworkarea.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 console/sci.c console/sci.h
44# spurious
45libbsp_a_SOURCES += spurious/spinit.c
46# timer
47libbsp_a_SOURCES += timer/timer.c
48
49libbsp_a_LIBADD = \
50    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
51    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
52
53include $(srcdir)/preinstall.am
54include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.