source: rtems/c/src/lib/libbsp/m68k/mvme167/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: 1.8 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
15noinst_PROGRAMS =
16
17include_HEADERS += include/page_table.h
18
19nodist_include_HEADERS += $(top_srcdir)/../shared/mvme/mvme16x_hw.h
20
21noinst_LIBRARIES = libbspstart.a
22libbspstart_a_SOURCES = ../../m68k/shared/start/start.S
23project_lib_DATA = start.$(OBJEXT)
24
25dist_project_lib_DATA += startup/linkcmds
26
27noinst_LIBRARIES += libbsp.a
28libbsp_a_SOURCES =
29
30# startup
31libbsp_a_SOURCES += startup/bspclean.c \
32    ../../shared/bsppredriverhook.c \
33    ../../shared/bspgetworkarea.c \
34    startup/bspstart.c ../../shared/bootcard.c \
35    ../../shared/getentropy-cpucounter.c \
36    startup/page_table.c \
37    ../../shared/sbrk.c ../../shared/setvec.c \
38    ../../shared/gnatinstallhandler.c
39libbsp_a_SOURCES += ../../shared/bspreset.c
40# clock
41libbsp_a_SOURCES += clock/ckinit.c
42# console
43libbsp_a_SOURCES += console/console.c console/console-recording.h
44# timer
45libbsp_a_SOURCES += timer/timer.c timer/timerisr.S
46
47if HAS_NETWORKING
48network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
49noinst_PROGRAMS += network.rel
50network_rel_SOURCES = network/network.c
51network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
52network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
53endif
54
55libbsp_a_LIBADD = \
56    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
57    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel \
58    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/fpsp.rel
59if HAS_NETWORKING
60libbsp_a_LIBADD += network.rel
61endif
62
63EXTRA_DIST = times
64
65include $(srcdir)/preinstall.am
66include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.