source: rtems/c/src/lib/libbsp/m68k/mcf5329/Makefile.am @ e9db9661

4.9.1
Last change on this file since e9db9661 was 692e5ba, checked in by Joel Sherrill <joel.sherrill@…>, on 07/04/08 at 16:08:26

2008-07-04 Matthew Riek <matthew.riek@…>

  • Makefile.am, README, include/coverhd.h, network/network.c, startup/bspstart.c, startup/cfinit.c, startup/linkcmdsflash: Add cache support for 5329. Fix bug in network driver. Enable the cache in copyback and write-through so we can assume that in BSP.
  • 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
28startup_SOURCES = startup/bspclean.c ../../shared/bsppredriverhook.c \
29    ../../shared/bsplibc.c ../../shared/bsppost.c \
30    ../../m68k/shared/m68kpretaskinghook.c \
31    ../../m68k/shared/m68kbspgetworkarea.c \
32    startup/init5329.c startup/bspstart.c startup/cfinit.c\
33    ../../shared/bootcard.c \
34    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
35    ../../shared/gnatinstallhandler.c
36clock_SOURCES = clock/clock.c
37console_SOURCES = console/console.c
38timer_SOURCES = timer/timer.c
39
40if HAS_NETWORKING
41network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
42noinst_PROGRAMS += network.rel
43network_rel_SOURCES = network/network.c
44network_rel_CPPFLAGS = $(AM_CPPFLAGS) \
45    $(network_CPPFLAGS)
46network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
47endif
48
49noinst_LIBRARIES = libbsp.a
50libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
51    $(timer_SOURCES)
52
53libbsp_a_LIBADD = \
54    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
55    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel \
56    ../../../libcpu/@RTEMS_CPU@/mcf532x/cachepd.rel
57
58if HAS_NETWORKING
59libbsp_a_LIBADD += network.rel
60endif
61
62include $(srcdir)/preinstall.am
63include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.