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

5
Last change on this file since affb282 was e58e29fd, checked in by Sebastian Huber <sebastian.huber@…>, on 11/24/17 at 06:58:55

Remove coverhd.h

This header file contained timing overhead values which are hard to
maintain.

Update #3254.

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