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

4.104.115
Last change on this file since 64eb0c7 was 64eb0c7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 10:19:37

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

  • Makefile.am: Eliminate *_SOURCES.
  • 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 = ../gp32/include/bsp.h
15include_HEADERS += ../gp32/smc/smc.h
16include_HEADERS += ../../shared/include/tm27.h
17
18nodist_include_HEADERS = include/bspopts.h
19nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
20DISTCLEANFILES = include/bspopts.h
21nodist_include_HEADERS += ../../shared/include/coverhd.h
22
23EXTRA_DIST = ../gp32/start/start.S
24start.$(OBJEXT): ../gp32/start/start.S
25        $(CPPASCOMPILE) -o $@ -c $<
26project_lib_DATA = start.$(OBJEXT)
27
28dist_project_lib_DATA += startup/linkcmds
29
30noinst_LIBRARIES = libbsp.a
31libbsp_a_SOURCES =
32
33# startup
34libbsp_a_SOURCES += ../../shared/bsplibc.c ../../shared/bsppost.c \
35    ../gp32/startup/bspstart.c ../../shared/bspclean.c \
36    ../gp32/startup/bspreset.c startup/memmap.c \
37    ../../shared/bootcard.c ../../shared/sbrk.c \
38    ../../shared/bsppretaskinghook.c  \
39    ../../shared/bsppredriverhook.c ../../shared/bspgetworkarea.c \
40    ../../shared/gnatinstallhandler.c
41# console
42libbsp_a_SOURCES += ../gp32/console/uart.c ../../shared/console.c
43# abort
44libbsp_a_SOURCES += ../shared/abort/abort.c
45# smc
46libbsp_a_SOURCES += ../gp32/smc/smc.c ../gp32/smc/smc.h
47
48libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/arm920.rel \
49    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
50    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel \
51    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/irq.rel
52
53include $(srcdir)/preinstall.am
54include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.