source: rtems/c/src/lib/libbsp/mips/jmr3904/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: 2.2 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
5include_bspdir = $(includedir)/bsp
6
7dist_project_lib_DATA = bsp_specs
8
9include_HEADERS = include/bsp.h
10include_HEADERS += include/tm27.h
11include_bsp_HEADERS = ../shared/liblnk/regs.h
12#isr
13include_bsp_HEADERS += ../../shared/include/irq-generic.h
14include_bsp_HEADERS += ../../shared/include/irq-info.h
15include_bsp_HEADERS += include/irq.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
21
22nodist_include_HEADERS += ../../shared/include/coverhd.h
23
24noinst_LIBRARIES = libbspstart.a
25libbspstart_a_SOURCES = start/start.S ../shared/liblnk/regs.h
26project_lib_DATA = start.$(OBJEXT)
27
28dist_project_lib_DATA += startup/linkcmds
29
30noinst_LIBRARIES += libbsp.a
31libbsp_a_SOURCES =
32
33# startup
34libbsp_a_SOURCES += ../../shared/bspclean.c
35libbsp_a_SOURCES += ../../shared/bsplibc.c
36libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
37libbsp_a_SOURCES += ../../shared/bsppost.c
38libbsp_a_SOURCES += ../../shared/bsppretaskinghook.c
39libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
40libbsp_a_SOURCES += startup/bspstart.c
41libbsp_a_SOURCES += ../../shared/bootcard.c
42libbsp_a_SOURCES += ../../shared/sbrk.c
43# clock
44libbsp_a_SOURCES += clock/clockdrv.c
45libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
46# console
47libbsp_a_SOURCES += ../../shared/console-polled.c
48libbsp_a_SOURCES += console/console-io.c
49# timer
50libbsp_a_SOURCES += timer/timer.c
51#isr
52libbsp_a_SOURCES += ../../shared/src/irq-generic.c
53libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
54libbsp_a_SOURCES += ../../shared/src/irq-info.c
55libbsp_a_SOURCES += ../../shared/src/irq-shell.c
56libbsp_a_SOURCES += ../../shared/src/irq-server.c
57libbsp_a_SOURCES += ../shared/irq/vectorexceptions.c
58libbsp_a_SOURCES += ../shared/irq/irq.c
59libbsp_a_SOURCES += irq/vectorisrs.c
60libbsp_a_SOURCES += ../shared/irq/interruptmask.c
61
62libbsp_a_LIBADD  = ../../../libcpu/@RTEMS_CPU@/shared/cache.rel
63libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel
64
65include $(srcdir)/preinstall.am
66include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.