source: rtems/c/src/lib/libbsp/m68k/mvme167/Makefile.am @ 3a3ee55a

4.115
Last change on this file since 3a3ee55a was 3a3ee55a, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/04/12 at 06:51:44

Remove CVS-Ids.

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