source: rtems/c/src/lib/libbsp/m68k/mcf5235/Makefile.am @ 56e8ee4e

4.104.114.95
Last change on this file since 56e8ee4e was b7ad0ed, checked in by Chris Johns <chrisj@…>, on 06/11/08 at 08:03:50

2008-06-10 Matthew Riek <matthew.riek@…>

  • Makefile.am: Add shared/m68kbspgetworkarea.c to sources.
  • configure.ac: Add RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION.
  • include/bsp.h: Add include bspopts.h.
  • start/start.S: Formatting changes.
  • startup/bspstart.c: Updated to use the shared BSP support.
  • 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
14
15nodist_include_HEADERS = include/bspopts.h
16DISTCLEANFILES = include/bspopts.h
17noinst_PROGRAMS =
18
19include_HEADERS += include/coverhd.h
20
21EXTRA_DIST = start/start.S
22start.$(OBJEXT): start/start.S
23        $(CPPASCOMPILE) -o $@ -c $<
24project_lib_DATA = start.$(OBJEXT)
25
26dist_project_lib_DATA += startup/linkcmds startup/linkcmdsflash \
27        startup/linkcmdsram
28
29startup_SOURCES = startup/bspclean.c ../../shared/bsppredriverhook.c \
30    ../../shared/bsplibc.c ../../shared/bsppost.c \
31    ../../m68k/shared/m68kpretaskinghook.c \
32    ../../m68k/shared/m68kbspgetworkarea.c \
33    startup/init5235.c startup/bspstart.c \
34    ../../shared/bootcard.c \
35    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
36    ../../shared/gnatinstallhandler.c
37clock_SOURCES = clock/clock.c
38console_SOURCES = console/console.c
39timer_SOURCES = timer/timer.c
40
41if HAS_NETWORKING
42network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
43noinst_PROGRAMS += network.rel
44network_rel_SOURCES = network/network.c
45network_rel_CPPFLAGS = $(AM_CPPFLAGS) \
46    $(network_CPPFLAGS)
47network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
48endif
49
50noinst_LIBRARIES = libbsp.a
51libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
52    $(timer_SOURCES)
53
54libbsp_a_LIBADD = \
55    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
56    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
57if HAS_NETWORKING
58libbsp_a_LIBADD += network.rel
59endif
60
61include $(srcdir)/preinstall.am
62include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.