source: rtems/c/src/lib/libbsp/m68k/csb360/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.6 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
16nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
17DISTCLEANFILES = include/bspopts.h
18
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 += ../../shared/bspclean.c \
33    ../../shared/bsppredriverhook.c \
34    ../../shared/bspgetworkarea.c \
35    ../../shared/bspstart.c startup/init5272.c ../../shared/bootcard.c \
36    ../../shared/getentropy-cpucounter.c \
37    ../../shared/sbrk.c ../../shared/setvec.c \
38    ../../shared/gnatinstallhandler.c
39libbsp_a_SOURCES += ../../shared/bspreset.c
40# console
41libbsp_a_SOURCES += console/console-io.c ../../shared/console-polled.c
42
43# Cache
44libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
45libbsp_a_SOURCES += ../../shared/include/cache_.h
46libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
47
48libbsp_a_LIBADD = \
49    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel \
50    ../../../libcpu/@RTEMS_CPU@/mcf5272/clock.rel \
51    ../../../libcpu/@RTEMS_CPU@/mcf5272/timer.rel
52
53include $(srcdir)/preinstall.am
54include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.