source: rtems/c/src/lib/libbsp/sparc64/niagara/Makefile.am @ 2d0bc83

5
Last change on this file since 2d0bc83 was 2d0bc83, checked in by Sebastian Huber <sebastian.huber@…>, on 03/30/18 at 18:42:21

build: Remove EXTRA_DIST

A "make dist" is not supported. So, it makes no sense to have pure "make
dist" related stuff in the Makefile.am.

  • Property mode set to 100644
File size: 1.7 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4include $(top_srcdir)/../../bsp.am
5
6dist_project_lib_DATA = startup/bsp_specs
7
8DISTCLEANFILES = include/bspopts.h
9noinst_PROGRAMS =
10
11
12
13start.$(OBJEXT): ../shared/start/start.S
14        $(CPPASCOMPILE) -o $@ -c $<
15project_lib_DATA = start.$(OBJEXT)
16
17dist_project_lib_DATA += ../shared/startup/linkcmds
18
19startup_SOURCES = startup/bspclean.c startup/m5op_sparc.S \
20    ../../shared/bsppredriverhook.c \
21    ../../shared/bootcard.c ../../shared/sbrk.c \
22    ../../shared/getentropy-cpucounter.c \
23    ../../shared/bspgetworkarea.c \
24    ../../shared/bspstart.c \
25    ../../shared/bspreset.c \
26    ../shared/startup/setvec.c \
27    ../../shared/gnatinstallhandler.c  \
28    ../shared/helenos/boot/genarch/balloc.c \
29    ../shared/helenos/boot/genarch/ofw.c \
30    ../shared/helenos/boot/genarch/ofw_tree.c \
31    ../shared/helenos/boot/generic/string.c \
32    ../shared/helenos/boot/sparc64/loader/ofwarch.c \
33    ../shared/helenos/boot/sparc64/loader/main.c \
34    ../shared/helenos/boot/sparc64/loader/ofwasm.S \
35    start/bspinit.S \
36    ../shared/asm/asm.S
37
38#clock_SOURCES = ../../shared/clock_driver_simidle.c
39clock_SOURCES = ../shared/clock/ckinit.c
40
41console_SOURCES = ../../shared/console.c  ../shared/console/conscfg.c \
42    ../../shared/console_select.c ../../shared/console_control.c \
43    ../../shared/console_read.c ../../shared/console_write.c
44
45timer_SOURCES = ../../shared/timerstub.c
46
47noinst_LIBRARIES = libbsp.a
48libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
49    $(timer_SOURCES)
50
51libbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
52
53include $(top_srcdir)/../../../../automake/local.am
54include $(srcdir)/../../../../../../bsps/sparc64/niagara/headers.am
Note: See TracBrowser for help on using the repository browser.