source: rtems/c/src/lib/libbsp/mips/genmongoosev/Makefile.am @ 8536b67

4.115
Last change on this file since 8536b67 was 8536b67, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/14 at 20:06:52

Move Mongoose-V specific devices into BSP.

Putting the duart in libcpu was very optimistic and presumptuous.
It has never been used again on another SoC and is BSP specific.

  • Property mode set to 100644
File size: 3.0 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 = start/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 += include/lr33000.h
20nodist_include_bsp_HEADERS += include/lr333x0.h
21nodist_include_bsp_HEADERS += include/mongoose-v.h
22nodist_include_bsp_HEADERS += include/r3000.h
23nodist_include_bsp_HEADERS += console/mg5uart.h
24DISTCLEANFILES = include/bspopts.h
25noinst_PROGRAMS =
26
27nodist_include_HEADERS += ../../shared/include/coverhd.h
28
29noinst_LIBRARIES = libbspstart.a
30libbspstart_a_SOURCES  = start/start.S
31libbspstart_a_SOURCES += start/regs.h
32libbspstart_a_SOURCES += start/mg5.h
33project_lib_DATA = start.$(OBJEXT)
34
35dist_project_lib_DATA += startup/linkcmds
36
37noinst_LIBRARIES += libbsp.a
38libbsp_a_SOURCES =
39
40# startup
41libbsp_a_SOURCES += ../../shared/bspclean.c
42libbsp_a_SOURCES += ../../shared/bsppretaskinghook.c
43libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
44libbsp_a_SOURCES += ../../shared/bsplibc.c
45libbsp_a_SOURCES += ../../shared/bsppost.c
46libbsp_a_SOURCES += startup/bspstart.c
47libbsp_a_SOURCES += ../../shared/bootcard.c
48libbsp_a_SOURCES += ../../shared/sbrk.c
49libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
50# clock
51libbsp_a_SOURCES += clock/clockdrv.c
52libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
53# console
54libbsp_a_SOURCES += console/conscfg.c
55libbsp_a_SOURCES += console/mg5uart.c
56libbsp_a_SOURCES += ../../shared/console.c
57libbsp_a_SOURCES += ../../shared/console_select.c
58libbsp_a_SOURCES += ../../shared/console_control.c
59libbsp_a_SOURCES += ../../shared/console_read.c
60libbsp_a_SOURCES += ../../shared/console_write.c
61# timer
62libbsp_a_SOURCES += timer/timer.c
63#isr
64libbsp_a_SOURCES += ../../shared/src/irq-generic.c
65libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
66libbsp_a_SOURCES += ../../shared/src/irq-info.c
67libbsp_a_SOURCES += ../../shared/src/irq-shell.c
68libbsp_a_SOURCES += ../../shared/src/irq-server.c
69libbsp_a_SOURCES += ../shared/irq/vectorexceptions.c
70libbsp_a_SOURCES += ../shared/irq/irq.c
71libbsp_a_SOURCES += irq/vectorisrs.c
72libbsp_a_SOURCES += ../shared/irq/interruptmask.c
73
74gdbstub_CPPFLAGS = -I$(srcdir)/../../mips/shared/gdbstub
75noinst_PROGRAMS += gdbstub.rel
76gdbstub_rel_SOURCES  = ../../mips/shared/gdbstub/mips-stub.c
77gdbstub_rel_SOURCES += startup/gdb-support.c
78gdbstub_rel_SOURCES += ../../shared/gdbstub/rtems-stub-glue.c
79gdbstub_rel_CPPFLAGS = $(AM_CPPFLAGS) $(gdbstub_CPPFLAGS)
80gdbstub_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
81
82libbsp_a_LIBADD  = ../../../libcpu/@RTEMS_CPU@/shared/cache.rel
83libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel
84
85include $(srcdir)/preinstall.am
86include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.