source: rtems/c/src/lib/libbsp/arm/smdk2410/Makefile.am @ a012d18

4.104.115
Last change on this file since a012d18 was a012d18, checked in by Joel Sherrill <joel.sherrill@…>, on 09/14/08 at 20:42:57

2008-09-14 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, include/bspopts.h.in: Split out bsp_get_work_area() into its own file and user BSP Framework to perform more initialization. Use same shared implementation as edb7312 and csb336.
  • 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
10dist_project_lib_DATA = bsp_specs
11
12include_HEADERS = ../gp32/include/bsp.h
13include_HEADERS += ../gp32/smc/smc.h
14include_HEADERS += ../../shared/include/tm27.h
15
16nodist_include_HEADERS = include/bspopts.h
17DISTCLEANFILES = include/bspopts.h
18noinst_PROGRAMS =
19nodist_include_HEADERS += ../../shared/include/coverhd.h
20
21EXTRA_DIST = ../gp32/start/start.S
22start.$(OBJEXT): ../gp32/start/start.S
23        $(CPPASCOMPILE) -o $@ -c $<
24project_lib_DATA = start.$(OBJEXT)
25
26dist_project_lib_DATA += startup/linkcmds
27
28startup_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
29    ../gp32/startup/bspstart.c ../gp32/startup/bspclean.c startup/memmap.c \
30    ../../shared/bootcard.c ../../shared/sbrk.c \
31    ../../shared/bsppretaskinghook.c  \
32    ../../shared/bsppredriverhook.c ../shared/bspgetworkarea.c \
33    ../../shared/gnatinstallhandler.c
34console_SOURCES = ../gp32/console/uart.c ../../shared/console.c
35abort_SOURCES = ../shared/abort/abort.c
36smc_SOURCES = ../gp32/smc/smc.c ../gp32/smc/smc.h
37
38noinst_LIBRARIES = libbsp.a
39libbsp_a_SOURCES = $(startup_SOURCES) $(console_SOURCES) $(abort_SOURCES) \
40    $(smc_SOURCES)
41
42libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/arm920.rel \
43    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
44    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel \
45    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/irq.rel
46
47include $(srcdir)/preinstall.am
48include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.