source: rtems/c/src/lib/libbsp/sh/gensh2/Makefile.am @ 21e96d66

5
Last change on this file since 21e96d66 was 2f91de2d, checked in by Sebastian Huber <sebastian.huber@…>, on 12/08/17 at 13:07:05

bsps/sh: Delete libcpu/sh

  • Property mode set to 100644
File size: 2.2 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
5include_shdir = $(includedir)/sh
6include_rtems_scoredir = $(includedir)/rtems/score
7include_bspdir = $(includedir)/bsp
8
9dist_project_lib_DATA = bsp_specs
10
11include_HEADERS = include/bsp.h
12include_HEADERS += include/tm27.h
13
14include_sh_HEADERS = include/sh/io_types.h
15include_sh_HEADERS += include/sh/sci.h
16include_sh_HEADERS += include/sh/sh7_pfc.h
17include_sh_HEADERS += include/sh/sh7_sci.h
18include_sh_HEADERS += include/sh/sci_termios.h
19
20include_rtems_score_HEADERS = include/rtems/score/ispsh7045.h
21include_rtems_score_HEADERS += include/rtems/score/iosh7045.h
22
23nodist_include_HEADERS = include/bspopts.h
24nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
25DISTCLEANFILES = include/bspopts.h
26
27
28EXTRA_DIST = start/start.ram start/start.rom
29noinst_LIBRARIES = libbspstart.a
30libbspstart_a_SOURCES = start/start.S
31project_lib_DATA = start.$(OBJEXT)
32
33dist_project_lib_DATA += startup/linkcmds startup/linkcmds.ram \
34    startup/linkcmds.rom
35
36noinst_LIBRARIES += libbsp.a
37libbsp_a_SOURCES =
38
39SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
40
41scitab.c: $(SHGEN)
42        $(SHGEN) -H @CPU_CLOCK_RATE_HZ@ sci > $@
43BUILT_SOURCES = scitab.c
44CLEANFILES = scitab.c
45
46# startup
47libbsp_a_SOURCES += startup/hw_init.c \
48    ../../shared/bsppredriverhook.c \
49    ../shared/startup/bspstart.c \
50    ../../shared/bspgetworkarea.c ../../shared/sbrk.c ../../shared/bootcard.c \
51    ../../shared/getentropy-cpucounter.c \
52    ../../shared/gnatinstallhandler.c ../../shared/bspclean.c \
53    ../shared/bsphwinit.c
54libbsp_a_SOURCES += ../../shared/bspreset.c
55libbsp_a_SOURCES += clock/ckinit.c
56libbsp_a_SOURCES += startup/cpu_asm.c startup/ispsh7045.c
57libbsp_a_SOURCES += timer/timer.c
58# scitab
59libbsp_a_SOURCES += scitab.c
60# console
61libbsp_a_SOURCES += ../../sh/shared/console.c console/config.c
62libbsp_a_SOURCES += console/sci.c
63libbsp_a_SOURCES += console/sci_termios.c
64# debugio
65libbsp_a_SOURCES += ../../shared/dummy_printk_support.c
66
67# Cache
68libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
69libbsp_a_SOURCES += ../../shared/include/cache_.h
70libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
71
72include $(srcdir)/preinstall.am
73include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.