source: rtems/c/src/lib/libbsp/sparc64/usiii/Makefile.am @ 9edb72e

5
Last change on this file since 9edb72e was 9edb72e, checked in by Sebastian Huber <sebastian.huber@…>, on 04/05/18 at 04:56:26

build: Remove DISTCLEANFILES

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

  • Property mode set to 100644
File size: 2.3 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
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.
14
15
16noinst_PROGRAMS =
17
18
19
20start.$(OBJEXT): ../shared/start/start.S
21        $(CPPASCOMPILE) -o $@ -c $<
22project_lib_DATA = start.$(OBJEXT)
23
24dist_project_lib_DATA += ../shared/startup/linkcmds
25
26startup_SOURCES = ../../shared/bspclean.c \
27    ../../shared/bspstart.c \
28    ../../shared/bootcard.c ../../shared/sbrk.c \
29    ../../shared/getentropy-cpucounter.c \
30    ../../shared/bspgetworkarea.c \
31    ../../shared/bsppredriverhook.c \
32    ../../shared/bspreset.c \
33    ../shared/startup/setvec.c \
34    ../../shared/gnatinstallhandler.c  \
35    ../shared/helenos/boot/genarch/balloc.c \
36    ../shared/helenos/boot/genarch/ofw.c \
37    ../shared/helenos/boot/genarch/ofw_tree.c \
38    ../shared/helenos/boot/generic/string.c \
39    ../shared/helenos/boot/sparc64/loader/ofwarch.c \
40    ../shared/helenos/boot/sparc64/loader/main.c \
41    ../shared/helenos/boot/sparc64/loader/ofwasm.S \
42    ../shared/asm/asm.S \
43    start/bspinit.S
44
45mmu_SOURCES = \
46    ../shared/helenos/kernel/sparc64/src/cache.S \
47    ../shared/helenos/kernel/sparc64/src/sun4u/takemmu.S \
48    ../shared/start/trap_table.S
49
50#clock_SOURCES = ../../shared/clock_driver_simidle.c
51clock_SOURCES = ../shared/clock/ckinit.c
52
53console_SOURCES = ../../shared/console.c  ../shared/console/conscfg.c \
54    ../../shared/console_select.c  ../../shared/console_control.c \
55    ../../shared/console_read.c ../../shared/console_write.c
56
57timer_SOURCES = ../../shared/timerstub.c
58
59project_lib_LIBRARIES = librtemsbsp.a
60librtemsbsp_a_SOURCES = $(startup_SOURCES) $(mmu_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
61    $(timer_SOURCES)
62
63librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
64
65include $(top_srcdir)/../../../../automake/local.am
66include $(srcdir)/../../../../../../bsps/shared/shared-sources.am
67include $(srcdir)/../../../../../../bsps/sparc64/usiii/headers.am
Note: See TracBrowser for help on using the repository browser.