source: rtems/c/src/lib/libbsp/m68k/genmcf548x/Makefile.am @ e58e29fd

5
Last change on this file since e58e29fd 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: 2.4 KB
RevLine 
[69effbb4]1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
[a1bc0a15]5include_bspdir = $(includedir)/bsp
6
[69effbb4]7include_HEADERS = include/bsp.h
8include_HEADERS += include/tm27.h
9
10nodist_include_HEADERS = include/bspopts.h
[a1bc0a15]11nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
[5df9bf6]12
13include_bsp_HEADERS =
14include_bsp_HEADERS += ../../shared/include/irq-generic.h
15include_bsp_HEADERS += ../../shared/include/irq-info.h
16include_bsp_HEADERS += include/irq.h
17
[69effbb4]18DISTCLEANFILES = include/bspopts.h
19noinst_PROGRAMS =
20
21
[a14fba32]22noinst_LIBRARIES = libbspstart.a
23libbspstart_a_SOURCES = start/start.S
[69effbb4]24
[6440903c]25dist_project_lib_DATA = bsp_specs
26dist_project_lib_DATA += startup/linkcmds.m5484FireEngine.flash
27dist_project_lib_DATA += startup/linkcmds.COBRA5475
28dist_project_lib_DATA += startup/linkcmds.m5484FireEngine
29
30project_lib_DATA = start.$(OBJEXT)
[cbe2043]31project_lib_DATA += startup/linkcmds
[69effbb4]32
[a14fba32]33noinst_LIBRARIES += libbsp.a
[64eb0c7]34libbsp_a_SOURCES =
[79bbb1cb]35libbsp_a_CPPFLAGS =
[e94666d]36
[64eb0c7]37# startup
[ca4602e]38libbsp_a_SOURCES += \
39  ../../shared/bspclean.c ../../shared/bspgetworkarea.c \
[2858939a]40  ../../shared/bspreset_loop.c \
[87a38dd]41  ../../shared/bsppredriverhook.c startup/init548x.c startup/bspstart.c \
[06d34af]42  ../../shared/bootcard.c ../../shared/sbrk.c ../../shared/setvec.c \
[ca4895c]43  ../../shared/getentropy-cpucounter.c \
[e483dc3]44  ../../shared/gnatinstallhandler.c
[64eb0c7]45# clock
[27b355b]46libbsp_a_SOURCES += clock/clock.c ../../../shared/clockdrv_shell.h
[64eb0c7]47# console
48libbsp_a_SOURCES += console/console.c
49# timer
50libbsp_a_SOURCES += timer/timer.c
[69effbb4]51
[5df9bf6]52# IRQ
53libbsp_a_SOURCES += ../../shared/src/irq-default-handler.c
54libbsp_a_SOURCES += ../../shared/src/irq-info.c
55libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
56libbsp_a_SOURCES += ../../shared/src/irq-server.c
57libbsp_a_SOURCES += ../../shared/src/irq-shell.c
58libbsp_a_SOURCES += irq/irq.c
[8d292011]59libbsp_a_SOURCES += irq/intc-icr-init-values.c
[5df9bf6]60
[79bbb1cb]61# Cache
62libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c
63libbsp_a_SOURCES += ../include/cache_.h
64libbsp_a_CPPFLAGS += -I$(srcdir)/include
65
[69effbb4]66if HAS_NETWORKING
67network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
68noinst_PROGRAMS += network.rel
69network_rel_SOURCES = network/network.c
70network_rel_CPPFLAGS = $(AM_CPPFLAGS) \
71    $(network_CPPFLAGS)
72network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
73endif
74
[79bbb1cb]75libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/misc.rel \
[045821e]76                  ../../../libcpu/@RTEMS_CPU@/mcf548x/mcdma.rel
77
[69effbb4]78if HAS_NETWORKING
79libbsp_a_LIBADD += network.rel
80endif
81
82include $(srcdir)/preinstall.am
83include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.