source: rtems/c/src/lib/libbsp/sparc64/usiii/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: 2.2 KB
RevLine 
[df970844]1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4include $(top_srcdir)/../../bsp.am
5
[2afb22b]6dist_project_lib_DATA = startup/bsp_specs
[df970844]7
8## these are the include files used by the boot process from HelenOS Sparc64
9## These include files mimic the HelenOS kernel include layout, which
10## in HelenOS-0.4.2 is more complicated than the boot include dirs.
11
12# assumed by the HelenOS sources to be in the root includedir. We place them
13# in a kernel include directory.
[2afb22b]14
15
[df970844]16DISTCLEANFILES = include/bspopts.h
17noinst_PROGRAMS =
18
19
20
21start.$(OBJEXT): ../shared/start/start.S
22        $(CPPASCOMPILE) -o $@ -c $<
23project_lib_DATA = start.$(OBJEXT)
24
25dist_project_lib_DATA += ../shared/startup/linkcmds
26
[ca4602e]27startup_SOURCES = ../../shared/bspclean.c \
[2858939a]28    ../../shared/bspstart.c \
[df970844]29    ../../shared/bootcard.c ../../shared/sbrk.c \
[ca4895c]30    ../../shared/getentropy-cpucounter.c \
[47a3cd8]31    ../../shared/bspgetworkarea.c \
[2d7029d5]32    ../../shared/bsppredriverhook.c \
[3dd381f]33    ../../shared/bspreset.c \
[df970844]34    ../shared/startup/setvec.c \
35    ../../shared/gnatinstallhandler.c  \
36    ../shared/helenos/boot/genarch/balloc.c \
37    ../shared/helenos/boot/genarch/ofw.c \
38    ../shared/helenos/boot/genarch/ofw_tree.c \
39    ../shared/helenos/boot/generic/string.c \
40    ../shared/helenos/boot/sparc64/loader/ofwarch.c \
41    ../shared/helenos/boot/sparc64/loader/main.c \
42    ../shared/helenos/boot/sparc64/loader/ofwasm.S \
43    ../shared/asm/asm.S \
44    start/bspinit.S
45
46mmu_SOURCES = \
47    ../shared/helenos/kernel/sparc64/src/cache.S \
48    ../shared/helenos/kernel/sparc64/src/sun4u/takemmu.S \
49    ../shared/start/trap_table.S
50
51#clock_SOURCES = ../../shared/clock_driver_simidle.c
52clock_SOURCES = ../shared/clock/ckinit.c
53
[1aa561d]54console_SOURCES = ../../shared/console.c  ../shared/console/conscfg.c \
55    ../../shared/console_select.c  ../../shared/console_control.c \
56    ../../shared/console_read.c ../../shared/console_write.c
[df970844]57
58timer_SOURCES = ../../shared/timerstub.c
59
60noinst_LIBRARIES = libbsp.a
61libbsp_a_SOURCES = $(startup_SOURCES) $(mmu_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
62    $(timer_SOURCES)
63
[4cf93658]64libbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
[df970844]65
66include $(top_srcdir)/../../../../automake/local.am
[2afb22b]67include $(srcdir)/../../../../../../bsps/sparc64/usiii/headers.am
Note: See TracBrowser for help on using the repository browser.