source: rtems/c/src/lib/libbsp/m68k/mvme162/Makefile.am @ f3ce8f41

5
Last change on this file since f3ce8f41 was f3ce8f41, checked in by Sebastian Huber <sebastian.huber@…>, on 01/02/18 at 07:00:02

bsps: Include bsp.am in all BSP Makefile.am

Update #3254.

  • Property mode set to 100644
File size: 2.1 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4include $(top_srcdir)/../../bsp.am
5
6include_bspdir = $(includedir)/bsp
7
8dist_project_lib_DATA = bsp_specs
9
10include_HEADERS = include/bsp.h
11include_HEADERS += include/tm27.h
12
13nodist_include_HEADERS = include/bspopts.h
14nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
15DISTCLEANFILES = include/bspopts.h
16noinst_PROGRAMS =
17
18include_HEADERS += include/page_table.h
19
20nodist_include_HEADERS += $(top_srcdir)/../shared/mvme/mvme16x_hw.h
21
22## Zilog component header files
23include_rtems_zilogdir = $(includedir)/rtems/zilog
24include_rtems_zilog_HEADERS = ../../shared/include/zilog/z8036.h
25
26noinst_LIBRARIES = libbspstart.a
27libbspstart_a_SOURCES = ../../m68k/shared/start/start.S
28project_lib_DATA = start.$(OBJEXT)
29
30dist_project_lib_DATA += startup/linkcmds
31
32noinst_LIBRARIES += libbsp.a
33libbsp_a_SOURCES =
34
35# startup
36libbsp_a_SOURCES += startup/bspclean.c \
37    ../../shared/bsppredriverhook.c \
38    startup/bspstart.c ../../shared/bootcard.c  \
39    ../../shared/getentropy-cpucounter.c \
40    startup/page_table.c \
41    ../../shared/bspgetworkarea.c startup/page_table.c \
42    ../../shared/sbrk.c ../../shared/setvec.c \
43    ../../shared/gnatinstallhandler.c
44libbsp_a_SOURCES += ../../shared/bspreset.c
45# clock
46libbsp_a_SOURCES += clock/ckinit.c
47# console
48libbsp_a_SOURCES += console/console.c
49# timer
50libbsp_a_SOURCES += timer/timer.c timer/timerisr.S
51# tod
52libbsp_a_SOURCES += tod/tod.c
53
54if HAS_NETWORKING
55network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
56noinst_PROGRAMS += network.rel
57network_rel_SOURCES = ../mvme167/network/network.c
58network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
59network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
60endif
61
62libbsp_a_LIBADD = \
63    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
64    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
65if HAS_NETWORKING
66libbsp_a_LIBADD += network.rel
67endif
68if HAS_FPSP
69libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/fpsp.rel
70endif
71
72EXTRA_DIST = times
73
74include $(srcdir)/preinstall.am
75include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.