source: rtems/c/src/lib/libbsp/mips/genmongoosev/Makefile.am @ 2858939a

5
Last change on this file since 2858939a was 2858939a, checked in by Sebastian Huber <sebastian.huber@…>, on 12/09/15 at 11:03:49

bsps: Delete superfluous bsp_pretasking_hook()

Use the bsp_predriver_hook() instead.

Update #2408.

  • Property mode set to 100644
File size: 2.9 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/bsppredriverhook.c
43libbsp_a_SOURCES += ../../shared/bsplibc.c
44libbsp_a_SOURCES += ../../shared/bsppost.c
45libbsp_a_SOURCES += startup/bspstart.c
46libbsp_a_SOURCES += ../../shared/bootcard.c
47libbsp_a_SOURCES += ../../shared/sbrk.c
48libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
49# clock
50libbsp_a_SOURCES += clock/clockdrv.c
51libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
52# console
53libbsp_a_SOURCES += console/conscfg.c
54libbsp_a_SOURCES += console/mg5uart.c
55libbsp_a_SOURCES += ../../shared/console.c
56libbsp_a_SOURCES += ../../shared/console_select.c
57libbsp_a_SOURCES += ../../shared/console_control.c
58libbsp_a_SOURCES += ../../shared/console_read.c
59libbsp_a_SOURCES += ../../shared/console_write.c
60# timer
61libbsp_a_SOURCES += timer/timer.c
62#isr
63libbsp_a_SOURCES += ../../shared/src/irq-generic.c
64libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
65libbsp_a_SOURCES += ../../shared/src/irq-info.c
66libbsp_a_SOURCES += ../../shared/src/irq-shell.c
67libbsp_a_SOURCES += ../../shared/src/irq-server.c
68libbsp_a_SOURCES += ../shared/irq/vectorexceptions.c
69libbsp_a_SOURCES += ../shared/irq/irq.c
70libbsp_a_SOURCES += irq/vectorisrs.c
71libbsp_a_SOURCES += ../shared/irq/interruptmask.c
72
73gdbstub_CPPFLAGS = -I$(srcdir)/../../mips/shared/gdbstub
74noinst_PROGRAMS += gdbstub.rel
75gdbstub_rel_SOURCES  = ../../mips/shared/gdbstub/mips-stub.c
76gdbstub_rel_SOURCES += startup/gdb-support.c
77gdbstub_rel_SOURCES += ../../shared/gdbstub/rtems-stub-glue.c
78gdbstub_rel_CPPFLAGS = $(AM_CPPFLAGS) $(gdbstub_CPPFLAGS)
79gdbstub_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
80
81libbsp_a_LIBADD  = ../../../libcpu/@RTEMS_CPU@/shared/cache.rel
82libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel
83
84include $(srcdir)/preinstall.am
85include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.