source: rtems/c/src/lib/libbsp/arm/gp32/Makefile.am @ 3416c44

4.104.115
Last change on this file since 3416c44 was 3416c44, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/26/08 at 04:04:51

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

  • Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10include_bspdir = $(includedir)/bsp
11
12dist_project_lib_DATA = bsp_specs
13
14include_HEADERS = include/bsp.h
15include_HEADERS += smc/smc.h
16include_HEADERS += include/tm27.h
17
18nodist_include_HEADERS = include/bspopts.h
19nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
20DISTCLEANFILES = include/bspopts.h
21noinst_PROGRAMS =
22
23nodist_include_HEADERS += ../../shared/include/coverhd.h
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
32startup_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
33    ../../shared/bsppredriverhook.c ../../shared/bspgetworkarea.c \
34    ../../shared/bsppretaskinghook.c startup/bspstart.c \
35    ../../shared/bspclean.c startup/bspreset.c \
36    startup/memmap.c ../../shared/bootcard.c ../../shared/sbrk.c \
37    ../../shared/gnatinstallhandler.c
38console_SOURCES = console/uart.c ../../shared/console.c
39abort_SOURCES = ../shared/abort/abort.c
40smc_SOURCES = smc/smc.c smc/smc.h
41
42noinst_LIBRARIES = libbsp.a
43libbsp_a_SOURCES = $(startup_SOURCES) $(console_SOURCES) $(abort_SOURCES) \
44    $(smc_SOURCES)
45
46libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/arm920.rel \
47    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
48    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel \
49    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/irq.rel
50
51include $(srcdir)/preinstall.am
52include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.