source: rtems/c/src/lib/libbsp/sh/gensh2/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.5 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
10
11start.$(OBJEXT): start/start.S
12        $(CPPASCOMPILE) -o $@ -c $<
13project_lib_DATA = start.$(OBJEXT)
14
15project_lib_DATA += linkcmds
16dist_project_lib_DATA += startup/linkcmds.ram
17dist_project_lib_DATA += startup/linkcmds.rom
18
19noinst_LIBRARIES = libbsp.a
20libbsp_a_SOURCES =
21
22SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
23
24scitab.c: $(SHGEN)
25        $(SHGEN) -H @CPU_CLOCK_RATE_HZ@ sci > $@
26BUILT_SOURCES = scitab.c
27CLEANFILES = scitab.c
28
29# startup
30libbsp_a_SOURCES += startup/hw_init.c \
31    ../../shared/bsppredriverhook.c \
32    ../shared/startup/bspstart.c \
33    ../../shared/bspgetworkarea.c ../../shared/sbrk.c ../../shared/bootcard.c \
34    ../../shared/getentropy-cpucounter.c \
35    ../../shared/gnatinstallhandler.c ../../shared/bspclean.c \
36    ../shared/bsphwinit.c
37libbsp_a_SOURCES += ../../shared/bspreset.c
38libbsp_a_SOURCES += clock/ckinit.c
39libbsp_a_SOURCES += startup/cpu_asm.c startup/ispsh7045.c
40libbsp_a_SOURCES += timer/timer.c
41# scitab
42libbsp_a_SOURCES += scitab.c
43# console
44libbsp_a_SOURCES += ../../sh/shared/console.c console/config.c
45libbsp_a_SOURCES += console/sci.c
46libbsp_a_SOURCES += console/sci_termios.c
47# debugio
48libbsp_a_SOURCES += ../../shared/dummy_printk_support.c
49
50# Cache
51libbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
52
53include $(top_srcdir)/../../../../automake/local.am
54include $(srcdir)/../../../../../../bsps/sh/gensh2/headers.am
Note: See TracBrowser for help on using the repository browser.