source: rtems/c/src/lib/libbsp/v850/gdbv850sim/Makefile.am @ 6279149

4.115
Last change on this file since 6279149 was 6279149, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/14 at 21:04:56

Add console-polled.h and update all BSPs that should use it.

The file console-polled.h provides the prototypes for the three
required methods when implementing a single port polled console
driver. This paradigm is common on simulators and simple hardware.

+ Updated the BSPs Makefile.am to make console-polled.h available.
+ Regenerated the BSPs preinstall.sm.
+ Updated console support files to include <bsp/console-polled.h>.
+ Updated console support files to make printk() support method static.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1##
2##
3
4ACLOCAL_AMFLAGS = -I ../../../../aclocal
5
6include $(top_srcdir)/../../../../automake/compile.am
7include $(top_srcdir)/../../bsp.am
8
9include_bspdir = $(includedir)/bsp
10
11dist_project_lib_DATA = bsp_specs
12
13include_HEADERS = include/bsp.h
14include_HEADERS += ../../shared/include/tm27.h
15include_bsp_HEADERS = include/syscall.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
20DISTCLEANFILES = include/bspopts.h
21noinst_PROGRAMS =
22
23nodist_include_HEADERS += ../../shared/include/coverhd.h
24
25EXTRA_DIST = start/start.S
26start.$(OBJEXT): start/start.S
27        $(CPPASCOMPILE) -o $@ -c $<
28project_lib_DATA = start.$(OBJEXT)
29
30dist_project_lib_DATA += startup/linkcmds
31
32libbsp_a_SOURCES = ../../shared/bspclean.c
33libbsp_a_SOURCES += ../../shared/bsplibc.c
34libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
35libbsp_a_SOURCES += ../../shared/bsppretaskinghook.c
36libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
37libbsp_a_SOURCES += ../../shared/bsppost.c
38libbsp_a_SOURCES += ../../shared/bspstart.c
39libbsp_a_SOURCES += ../../shared/bootcard.c
40libbsp_a_SOURCES += ../../shared/sbrk.c
41libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
42libbsp_a_SOURCES += startup/bspreset.c
43libbsp_a_SOURCES += ../../v850/shared/crt1.c
44libbsp_a_SOURCES += startup/trap.S
45
46libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
47libbsp_a_SOURCES += ../../shared/console-polled.c
48libbsp_a_SOURCES += console/console-io.c
49libbsp_a_SOURCES += ../../shared/timerstub.c
50
51# Cache
52libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
53libbsp_a_SOURCES += ../../shared/include/cache_.h
54libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
55
56noinst_LIBRARIES = libbsp.a
57
58include $(srcdir)/preinstall.am
59include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.