source: rtems/c/src/lib/libbsp/nios2/nios2_iss/Makefile.am @ 642ef00

5
Last change on this file since 642ef00 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.5 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
5dist_project_lib_DATA = bsp_specs
6
7include_bspdir = $(includedir)/bsp
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
14nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
15DISTCLEANFILES = include/bspopts.h
16
17
18EXTRA_DIST = times
19noinst_LIBRARIES = libbspstart.a
20libbspstart_a_SOURCES = start/crtnn.S
21libbspstart_a_SOURCES += start/start.S
22project_lib_DATA = start.$(OBJEXT) crtnn.$(OBJEXT)
23
24dist_project_lib_DATA += startup/linkcmds
25
26noinst_LIBRARIES += libbsp.a
27libbsp_a_SOURCES =
28libbsp_a_CPPFLAGS =
29
30# startup
31libbsp_a_SOURCES += ../../shared/bspclean.c
32libbsp_a_SOURCES += ../../shared/bspreset_loop.c
33libbsp_a_SOURCES += startup/bspstart.c
34libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
35libbsp_a_SOURCES += ../../shared/bootcard.c
36libbsp_a_SOURCES += ../../shared/getentropy-cpucounter.c
37libbsp_a_SOURCES += ../../shared/sbrk.c
38libbsp_a_SOURCES += startup/setvec.c
39libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
40libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
41
42# clock
43libbsp_a_SOURCES += clock/clock.c ../../../shared/clockdrv_shell.h
44# console
45libbsp_a_SOURCES += console/console.c ../../shared/console-polled.c
46# timer
47libbsp_a_SOURCES += timer/timer.c
48
49# Cache
50libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/cache.rel
51
52include $(srcdir)/preinstall.am
53include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.