source: rtems/c/src/lib/libbsp/sh/gensh1/Makefile.am @ 33a2faa

5
Last change on this file since 33a2faa was 33a2faa, checked in by Sebastian Huber <sebastian.huber@…>, on 01/02/18 at 07:04:06

bsps: Add EXTRA_DIST to all BSP Makefile.am

This makes it possible to easily use

EXTRA_DIST += foobar

in fragments.

Update #3254.

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