source: rtems/c/src/lib/libbsp/sh/gensh4/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.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
8DISTCLEANFILES = include/bspopts.h
9
10start.$(OBJEXT): start/start.S
11        $(CPPASCOMPILE) -o $@ -c $<
12project_lib_DATA = start.$(OBJEXT)
13
14project_lib_DATA += linkcmds
15dist_project_lib_DATA += startup/linkcmds.rom
16dist_project_lib_DATA += startup/linkcmds.rom2ram
17
18noinst_LIBRARIES = libbsp.a
19libbsp_a_SOURCES =
20
21# startup
22libbsp_a_SOURCES += \
23    ../../shared/bsppredriverhook.c ../shared/startup/bspstart.c \
24    ../../shared/bspgetworkarea.c \
25    ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/bootcard.c \
26    ../../shared/getentropy-cpucounter.c \
27    ../../shared/gnatinstallhandler.c ../shared/bsphwinit.c
28libbsp_a_SOURCES += ../../shared/bspreset.c
29libbsp_a_SOURCES += startup/cpu_asm.c startup/ispsh7750.c
30libbsp_a_SOURCES += clock/ckinit.c
31libbsp_a_SOURCES += timer/timer.c
32# console
33libbsp_a_SOURCES += console/console.c ../../shared/dummy_printk_support.c
34libbsp_a_SOURCES += console/sh4uart.c
35# hw_init
36libbsp_a_SOURCES += hw_init/hw_init.c
37
38# Cache
39libbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
40
41
42include $(top_srcdir)/../../../../automake/local.am
43include $(srcdir)/../../../../../../bsps/sh/gensh4/headers.am
Note: See TracBrowser for help on using the repository browser.