source: rtems/c/src/lib/libbsp/no_cpu/no_bsp/Makefile.am @ 9704efb4

5
Last change on this file since 9704efb4 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.2 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
17noinst_PROGRAMS =
18
19
20dist_project_lib_DATA += startup/linkcmds
21
22noinst_LIBRARIES = libbsp.a
23libbsp_a_SOURCES =
24
25# startup
26libbsp_a_SOURCES += ../../shared/bspclean.c \
27    ../../shared/bsppredriverhook.c \
28    ../../shared/startup/bspgetworkarea.c \
29    startup/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
30    ../../shared/getentropy-cpucounter.c \
31    startup/setvec.c ../../shared/gnatinstallhandler.c
32libbsp_a_SOURCES += ../../shared/bspreset.c
33# clock
34libbsp_a_SOURCES += clock/ckinit.c
35# console
36libbsp_a_SOURCES += console/console.c
37# timer
38libbsp_a_SOURCES += timer/timer.c timer/timerisr.c
39# shmsupp
40libbsp_a_SOURCES += shmsupp/addrconv.c shmsupp/getcfg.c shmsupp/lock.c \
41    shmsupp/mpisr.c
42
43EXTRA_DIST += times
44
45include $(srcdir)/preinstall.am
46include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.