source: rtems/c/src/lib/libbsp/m68k/mcf5206elite/Makefile.am @ 05adba6

4.104.115
Last change on this file since 05adba6 was 05adba6, checked in by Joel Sherrill <joel.sherrill@…>, on 09/10/08 at 21:35:06

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

  • Makefile.am, include/bsp.h: Review of all bsp_cleanup() implementations. In this phase, all prototypes were removed from bsp.h and empty implementations were removed and made to use the shared stub.
  • startup/bspclean.c: Removed.
  • Property mode set to 100644
File size: 1.9 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
19SUBDIRS = . tools
20
21include_HEADERS += include/coverhd.h
22include_HEADERS += include/i2c.h
23include_HEADERS += include/i2cdrv.h
24include_HEADERS += include/ds1307.h
25include_HEADERS += include/nvram.h
26nodist_include_HEADERS += ../../shared/tod.h
27
28EXTRA_DIST = times
29
30EXTRA_DIST += start/start.S
31start.$(OBJEXT): start/start.S
32        $(CPPASCOMPILE) -o $@ -c $<
33
34project_lib_DATA = start.$(OBJEXT)
35
36dist_project_lib_DATA += startup/linkcmds startup/gdbinit \
37    startup/linkcmds.flash
38
39startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
40    ../../shared/bsppredriverhook.c \
41    ../../shared/bsppost.c ../../m68k/shared/m68kpretaskinghook.c \
42    startup/bspstart.c startup/init5206e.c ../../shared/bootcard.c \
43    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
44    ../../shared/gnatinstallhandler.c
45console_SOURCES = console/console.c ../../shared/dummy_printk_support.c
46i2c_SOURCES = i2c/i2c.c i2c/i2cdrv.c
47tod_SOURCES = tod/ds1307.c tod/todcfg.c ../../shared/tod.c
48nvram_SOURCES = nvram/nvram.c
49
50noinst_LIBRARIES = libbsp.a
51libbsp_a_SOURCES = $(startup_SOURCES) $(console_SOURCES) \
52    $(i2c_SOURCES) $(tod_SOURCES) $(nvram_SOURCES)
53
54libbsp_a_LIBADD = \
55    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
56    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel \
57    ../../../libcpu/@RTEMS_CPU@/mcf5206/clock.rel \
58    ../../../libcpu/@RTEMS_CPU@/mcf5206/mcfuart.rel \
59    ../../../libcpu/@RTEMS_CPU@/mcf5206/timer.rel \
60    ../../../libcpu/@RTEMS_CPU@/mcf5206/mbus.rel
61
62include $(srcdir)/preinstall.am
63include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.