source: rtems/c/src/lib/libbsp/arm/gdbarmsim/Makefile.am @ 19260fb

4.115
Last change on this file since 19260fb was 97d0b9b, checked in by Chris Johns <chrisj@…>, on 05/26/14 at 11:48:36

bsp/gdbarmsim: Switch to the standard arm/shared/startup.

Switch to the standard ARM startup code. This requires adding the
standard interrupt code. The interrupt code does nothing at this
point in time. I do not know if the ARM simulator in GDB supports
interrupts.

  • Property mode set to 100644
File size: 2.6 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 += ../../shared/include/tm27.h
11include_bsp_HEADERS = include/irq.h
12include_bsp_HEADERS += include/swi.h
13include_bsp_HEADERS += ../shared/include/start.h
14include_bsp_HEADERS += ../../shared/include/irq-generic.h
15include_bsp_HEADERS += ../../shared/include/irq-info.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES = include/bspopts.h
20noinst_PROGRAMS =
21
22nodist_include_HEADERS += ../../shared/include/coverhd.h
23
24noinst_LIBRARIES = libbspstart.a
25libbspstart_a_SOURCES = ../shared/start/start.S
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/bsplibc.c ../../shared/bsppost.c \
35    ../../shared/bspgetworkarea.c ../../shared/bsppretaskinghook.c \
36    ../../shared/bsppredriverhook.c ../../shared/bspstart.c \
37    ../../shared/bspclean.c startup/bspreset.c ../../shared/bootcard.c \
38    ../../shared/sbrk.c ../../shared/gnatinstallhandler.c startup/syscalls.c
39libbsp_a_SOURCES += ../../shared/cpucounterread.c
40libbsp_a_SOURCES += ../../shared/cpucounterdiff.c
41# console
42libbsp_a_SOURCES += ../../shared/console-polled.c console/console-io.c
43# clock
44libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
45# timer
46libbsp_a_SOURCES += ../../shared/timerstub.c
47# above
48libbsp_a_SOURCES += ../shared/abort/abort.c
49# start hooks
50libbsp_a_SOURCES += startup/bspstarthooks.c
51libbsp_a_SOURCES += ../shared/startup/bsp-start-memcpy.S
52
53# IRQ
54libbsp_a_SOURCES += irq/irq.c
55libbsp_a_SOURCES += irq/irq-dispatch.c
56libbsp_a_SOURCES += ../../shared/src/irq-default-handler.c
57libbsp_a_SOURCES += ../../shared/src/irq-generic.c
58libbsp_a_SOURCES += ../../shared/src/irq-info.c
59libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
60libbsp_a_SOURCES += ../../shared/src/irq-server.c
61libbsp_a_SOURCES += ../../shared/src/irq-shell.c
62
63# Cache
64libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
65libbsp_a_SOURCES += ../../shared/include/cache_.h
66libbsp_a_CPPFLAGS = -I$(srcdir)/../../shared/include
67
68#libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/arm920.rel \
69#    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
70#    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel \
71#    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/irq.rel
72
73include $(srcdir)/preinstall.am
74include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.