source: rtems/c/src/lib/libbsp/arm/gba/Makefile.am @ 8aeb235

4.104.115
Last change on this file since 8aeb235 was 8aeb235, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/30/08 at 04:33:52

2008-09-30 Ralf Corsépius <ralf.corsepius@…>

  • console/defaultfont.c: Remove (Renamed into console/defaultfont.h).
  • console/defaultfont.h: New (Renamed from console/defaultfont.c).
  • Makefile.am, console/conio.c: Reflect renamer.
  • Property mode set to 100644
File size: 2.0 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 += include/tm27.h
19include_HEADERS += include/gba.h
20
21nodist_include_HEADERS = include/bspopts.h
22nodist_include_HEADERS += ../../shared/include/coverhd.h
23nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
24DISTCLEANFILES = include/bspopts.h
25noinst_PROGRAMS =
26
27noinst_LIBRARIES = libbspstart.a
28libbspstart_a_SOURCES = start/start.S
29project_lib_DATA = start.$(OBJEXT)
30
31dist_project_lib_DATA += startup/linkcmds
32
33noinst_LIBRARIES += libbsp.a
34libbsp_a_SOURCES =
35
36# some objects have to be forced together to ensure they are ALWAYS
37# the ones linked into the application executable.  Every application
38# needs startup/bspstart.c, so we will force in the others
39noinst_PROGRAMS += gbaoverrides.rel
40gbaoverrides_rel_SOURCES = startup/bspstart.c startup/cpu.c startup/cpu_asm.S
41gbaoverrides_rel_CPPFLAGS = $(AM_CPPFLAGS)
42gbaoverrides_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
43
44# startup
45libbsp_a_SOURCES += ../../shared/bsplibc.c ../../shared/bsppost.c \
46    startup/bspgetworkarea.c ../../shared/bsppretaskinghook.c \
47    ../../shared/bsppredriverhook.c ../../shared/bspclean.c \
48    startup/bspreset.c ../../shared/bootcard.c ../../shared/sbrk.c \
49    ../../shared/gnatinstallhandler.c
50# clock
51libbsp_a_SOURCES += clock/clockdrv.c
52# console
53libbsp_a_SOURCES += console/conio.c console/console.c \
54    console/defaultfont.h
55# timer
56libbsp_a_SOURCES += timer/timer.c
57
58include_HEADERS += irq/irq.h
59# irq
60libbsp_a_SOURCES += irq/irq.c irq/bsp_irq_init.c irq/irq_init.c \
61    irq/bsp_irq_asm.S irq/irq_asm.S
62
63libbsp_a_LIBADD = gbaoverrides.rel
64
65include $(srcdir)/preinstall.am
66include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.