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

4.104.115
Last change on this file since e94666d was e94666d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 03:43:47

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

  • Makefile.am: Move noinst_LIBRARIES = libbsp.a before its components.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10include_bspdir = $(includedir)/bsp
11
12dist_project_lib_DATA = bsp_specs
13
14include_HEADERS = include/bsp.h
15include_HEADERS += include/tm27.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES = include/bspopts.h
20
21SUBDIRS = . tools
22
23include_HEADERS += include/coverhd.h
24include_HEADERS += include/i2c.h
25include_HEADERS += include/i2cdrv.h
26include_HEADERS += include/ds1307.h
27include_HEADERS += include/nvram.h
28nodist_include_HEADERS += ../../shared/tod.h
29
30EXTRA_DIST = times
31
32EXTRA_DIST += start/start.S
33start.$(OBJEXT): start/start.S
34        $(CPPASCOMPILE) -o $@ -c $<
35
36project_lib_DATA = start.$(OBJEXT)
37
38dist_project_lib_DATA += startup/linkcmds startup/gdbinit \
39    startup/linkcmds.flash
40
41noinst_LIBRARIES = libbsp.a
42
43startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
44    ../../shared/bsppredriverhook.c ../../shared/bspgetworkarea.c \
45    ../../shared/bsppost.c ../../shared/bsppretaskinghook.c \
46    ../../shared/bspstart.c startup/init5206e.c ../../shared/bootcard.c \
47    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
48    ../../shared/gnatinstallhandler.c
49console_SOURCES = console/console.c ../../shared/dummy_printk_support.c
50i2c_SOURCES = i2c/i2c.c i2c/i2cdrv.c
51tod_SOURCES = tod/ds1307.c tod/todcfg.c ../../shared/tod.c
52nvram_SOURCES = nvram/nvram.c
53
54libbsp_a_SOURCES = $(startup_SOURCES) $(console_SOURCES) \
55    $(i2c_SOURCES) $(tod_SOURCES) $(nvram_SOURCES)
56
57libbsp_a_LIBADD = \
58    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
59    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel \
60    ../../../libcpu/@RTEMS_CPU@/mcf5206/clock.rel \
61    ../../../libcpu/@RTEMS_CPU@/mcf5206/mcfuart.rel \
62    ../../../libcpu/@RTEMS_CPU@/mcf5206/timer.rel \
63    ../../../libcpu/@RTEMS_CPU@/mcf5206/mbus.rel
64
65include $(srcdir)/preinstall.am
66include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.