source: rtems/c/src/lib/libbsp/bfin/eZKit533/Makefile.am @ c8b1ab9

4.104.114.95
Last change on this file since c8b1ab9 was c8b1ab9, checked in by Joel Sherrill <joel.sherrill@…>, on 08/18/08 at 21:51:35

2008-08-18 Allan Hessenflow <allanh@…>

  • Makefile.am, console/console-io.c, startup/bspstart.c: Update to use shared libcpu version of code implemented as part of bf537Stamp effort.
  • Property mode set to 100644
File size: 1.7 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/tm27.h
14include_HEADERS += include/cplb.h
15
16nodist_include_HEADERS = include/bspopts.h
17DISTCLEANFILES = include/bspopts.h
18
19noinst_PROGRAMS =
20
21include_HEADERS += ../../shared/include/coverhd.h
22
23EXTRA_DIST = ../shared/start/start.S
24start.$(OBJEXT): ../shared/start/start.S
25        $(CPPASCOMPILE) -DASM -o $@ -c $<
26project_lib_DATA = start.$(OBJEXT)
27
28dist_project_lib_DATA += startup/linkcmds
29
30noinst_PROGRAMS += startup.rel
31startup_rel_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
32        ../../shared/bsppredriverhook.c startup/bspstart.c \
33        ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/setvec.c \
34        ../../shared/bootcard.c ../../shared/gnatinstallhandler.c
35startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
36startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
37
38noinst_PROGRAMS += console.rel
39console_rel_SOURCES = console/console-io.c
40console_rel_CPPFLAGS = $(AM_CPPFLAGS)
41console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
42
43noinst_LIBRARIES = libbsp.a
44libbsp_a_SOURCES =
45libbsp_a_LIBADD = startup.rel console.rel
46libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/mmu.rel
47libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/interrupt.rel
48libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/cache.rel
49libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/uart.rel
50libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/clock.rel
51libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/rtc.rel
52libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/timer.rel
53
54EXTRA_DIST += times
55
56include $(srcdir)/preinstall.am
57include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.