source: rtems/c/src/lib/libbsp/arm/gba/Makefile.am @ 74d0e87e

4.104.115
Last change on this file since 74d0e87e was 74d0e87e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/24/08 at 03:06:28

2008-09-24 Ralf Corsepius <ralf.corsepius@…>

  • Makefile.am: Remove empty HAS_NETWORKING conditional.
  • Property mode set to 100644
File size: 1.9 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10dist_project_lib_DATA = bsp_specs
11
12include_HEADERS = include/bsp.h
13include_HEADERS += include/arm_mode_bits.h
14include_HEADERS += include/asm_macros.h
15include_HEADERS += include/gba_registers.h
16include_HEADERS += include/conio.h
17include_HEADERS += include/tm27.h
18include_HEADERS += include/gba.h
19
20nodist_include_HEADERS = include/bspopts.h
21nodist_include_HEADERS += ../../shared/include/coverhd.h
22DISTCLEANFILES = include/bspopts.h
23noinst_PROGRAMS =
24
25EXTRA_DIST = start/start.S
26start.$(OBJEXT): start/start.S
27        $(CPPASCOMPILE) -o $@ -c $<
28project_lib_DATA = start.$(OBJEXT)
29
30dist_project_lib_DATA += startup/linkcmds
31
32# some objects have to be forced together to ensure they are ALWAYS
33# the ones linked into the application executable.  Every application
34# needs startup/bspstart.c, so we will force in the others
35noinst_PROGRAMS += gbaoverrides.rel
36gbaoverrides_rel_SOURCES = startup/bspstart.c startup/cpu.c startup/cpu_asm.S
37gbaoverrides_rel_CPPFLAGS = $(AM_CPPFLAGS)
38gbaoverrides_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
39
40startup_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
41    startup/bspgetworkarea.c ../../shared/bsppretaskinghook.c \
42    ../../shared/bsppredriverhook.c ../../shared/bspclean.c \
43    startup/bspreset.c ../../shared/bootcard.c ../../shared/sbrk.c \
44    ../../shared/gnatinstallhandler.c
45clock_SOURCES = clock/clockdrv.c
46console_SOURCES = console/conio.c console/console.c \
47    console/defaultfont.c
48timer_SOURCES = timer/timer.c
49
50include_HEADERS += irq/irq.h
51irq_SOURCES = irq/irq.c irq/bsp_irq_init.c irq/irq_init.c \
52    irq/bsp_irq_asm.S irq/irq_asm.S
53
54noinst_LIBRARIES = libbsp.a
55libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
56    $(timer_SOURCES) $(irq_SOURCES)
57
58libbsp_a_LIBADD = gbaoverrides.rel
59
60include $(srcdir)/preinstall.am
61include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.