source: rtems/c/src/lib/libbsp/m68k/mcf5206elite/Makefile.am @ 7be8d6b

4.9
Last change on this file since 7be8d6b was 7be8d6b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 01:48:04

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

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