source: rtems/c/src/lib/libbsp/m68k/mcf52235/Makefile.am @ 87a38dd

4.104.115
Last change on this file since 87a38dd was 87a38dd, checked in by Joel Sherrill <joel.sherrill@…>, on 09/22/08 at 21:50:29

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

  • Makefile.am, configure.ac, include/bspopts.h.in: Use standardized bsp_cleanup() which can optionally print a message, poll for user to press key, and call bsp_reset(). Using this eliminates the various bsp_cleanup() implementations which had their own implementation and variety of string constants.
  • startup/bspclean.c: Removed.
  • Property mode set to 100644
File size: 1.8 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
27
28startup_SOURCES = ../../shared/bspclean.c ../../shared/bsppredriverhook.c \
29    ../../shared/bsplibc.c ../../shared/bsppost.c ../../shared/bspreset_loop.c \
30    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
31    startup/init52235.c ../../shared/bspstart.c startup/cfinit.c \
32    startup/bspgetcpuclockspeed.c ../../shared/bootcard.c \
33    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
34    ../../shared/gnatinstallhandler.c
35clock_SOURCES = clock/clock.c
36console_SOURCES = console/console.c
37debugio_SOURCES = console/debugio.c
38timer_SOURCES = timer/timer.c
39
40#if HAS_NETWORKING
41#network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
42#noinst_PROGRAMS += network.rel
43#network_rel_SOURCES = network/network.c
44#network_rel_CPPFLAGS = $(AM_CPPFLAGS) \
45#    $(network_CPPFLAGS)
46#network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
47#endif
48
49noinst_LIBRARIES = libbsp.a
50libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
51    $(debugio_SOURCES) $(timer_SOURCES)
52
53libbsp_a_LIBADD = \
54    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
55    ../../../libcpu/@RTEMS_CPU@/mcf5223x/cachepd.rel \
56    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
57#if HAS_NETWORKING
58#libbsp_a_LIBADD += network.rel
59#endif
60
61include $(srcdir)/preinstall.am
62include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.