source: rtems/c/src/lib/libbsp/moxie/moxiesim/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.4 KB
Line 
1##
2## $Id: Makefile.am,v 1.36 2008/10/02 21:39:40 joel Exp $
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.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
15
16nodist_include_HEADERS = include/bspopts.h
17nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
18nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
19DISTCLEANFILES = include/bspopts.h
20
21nodist_include_HEADERS += ../../shared/include/coverhd.h
22
23noinst_LIBRARIES = libbspstart.a
24libbspstart_a_SOURCES = start/start.S
25project_lib_DATA = start.$(OBJEXT)
26
27dist_project_lib_DATA += startup/linkcmds
28
29noinst_LIBRARIES += libbsp.a
30libbsp_a_SOURCES =
31
32# startup
33libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
34    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
35    ../../shared/bspgetworkarea.c ../../shared/bsppost.c \
36    ../../shared/bspstart.c startup/moxiebdinstallirq.c \
37    ../../shared/bootcard.c ../../shared/sbrk.c \
38    ../../shared/gnatinstallhandler.c startup/__main.c
39# clock
40libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
41# console
42libbsp_a_SOURCES += ../../shared/console-polled.c console/console-io.c \
43   console/syscalls.S
44# timer
45libbsp_a_SOURCES += ../../shared/timerstub.c
46
47EXTRA_DIST = times
48
49include $(srcdir)/preinstall.am
50include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.