source: rtems/c/src/lib/libbsp/arm/gba/Makefile.am @ 82dcbc8

4.115
Last change on this file since 82dcbc8 was 536f2d2b, checked in by Sebastian Huber <sebastian.huber@…>, on 04/30/10 at 14:55:55

2010-04-30 Sebastian Huber <sebastian.huber@…>

  • irq/irq_asm.S, irq/irq_init.c, irq/bsp_irq_asm.S, irq/bsp_irq_init.c: Removed files.
  • Makefile.am, preinstall.am: Reflect changes above. Added generic interrupt support modules.
  • irq/irq.h, irq/irq.c: The previous interrupt warning fix changed the interrupt handler API. To fix this problem the generic interrupt support framework will be used now. This eliminates a lot of copy and paste code. The interrupt header file is now <bsp/irq.h>.
  • include/bsp.h: Define BSP_FEATURE_IRQ_EXTENSION.
  • start/start.S, startup/bspstart.c, clock/clockdrv.c, console/console.c, timer/timer.c: Interrupt support changes.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1##
2## $Id$
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 += include/arm_mode_bits.h
15include_HEADERS += include/asm_macros.h
16include_HEADERS += include/gba_registers.h
17include_HEADERS += include/conio.h
18include_HEADERS += ../../shared/include/tm27.h
19include_HEADERS += include/gba.h
20
21include_bsp_HEADERS =
22
23nodist_include_HEADERS = include/bspopts.h
24nodist_include_HEADERS += ../../shared/include/coverhd.h
25nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
26DISTCLEANFILES = include/bspopts.h
27noinst_PROGRAMS =
28
29noinst_LIBRARIES = libbspstart.a
30libbspstart_a_SOURCES = start/start.S
31project_lib_DATA = start.$(OBJEXT)
32
33dist_project_lib_DATA += startup/linkcmds
34
35noinst_LIBRARIES += libbsp.a
36libbsp_a_SOURCES =
37
38# startup
39libbsp_a_SOURCES += ../../shared/bsplibc.c ../../shared/bsppost.c \
40    startup/bspgetworkarea.c ../../shared/bsppretaskinghook.c \
41    ../../shared/bsppredriverhook.c ../../shared/bspclean.c \
42    startup/bspreset.c ../../shared/bootcard.c ../../shared/sbrk.c \
43    ../../shared/gnatinstallhandler.c \
44    startup/bspstart.c
45# clock
46libbsp_a_SOURCES += clock/clockdrv.c ../../../shared/clockdrv_shell.h
47# console
48libbsp_a_SOURCES += console/conio.c console/console.c \
49    console/defaultfont.h
50# timer
51libbsp_a_SOURCES += timer/timer.c
52
53# irq
54include_bsp_HEADERS += ../../shared/include/irq-generic.h \
55        ../../shared/include/irq-info.h \
56        irq/irq.h
57libbsp_a_SOURCES += ../../shared/src/irq-generic.c \
58        ../../shared/src/irq-legacy.c \
59        ../../shared/src/irq-info.c \
60        ../../shared/src/irq-shell.c \
61        ../../shared/src/irq-server.c \
62        irq/irq.c
63
64include $(srcdir)/preinstall.am
65include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.