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

4.104.114.84.95
Last change on this file since fc1a3ba was fc1a3ba, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/12/06 at 10:12:31

Remove all-local:.

  • Property mode set to 100644
File size: 2.4 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10dist_project_lib_DATA = bsp_specs
11
12include_HEADERS = include/bsp.h
13include_HEADERS += include/tm27.h
14
15nodist_include_HEADERS = include/bspopts.h
16DISTCLEANFILES = include/bspopts.h
17noinst_PROGRAMS =
18
19include_HEADERS += include/coverhd.h
20include_HEADERS += include/page_table.h
21include_HEADERS += include/fatal.h
22
23nodist_include_HEADERS += $(top_srcdir)/../shared/mvme/mvme16x_hw.h
24
25EXTRA_DIST = ../../m68k/shared/start.S
26start.$(OBJEXT): ../../m68k/shared/start.S
27        $(CPPASCOMPILE) -DASM -o $@ -c $<
28
29project_lib_DATA = start.$(OBJEXT)
30
31dist_project_lib_DATA += startup/linkcmds
32
33noinst_PROGRAMS += startup.rel
34startup_rel_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
35    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
36    ../../m68k/shared/m68kpretaskinghook.c ../../shared/main.c \
37    startup/page_table.c ../../shared/sbrk.c ../../m68k/shared/setvec.c \
38    ../../shared/gnatinstallhandler.c
39startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
40startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
41
42noinst_PROGRAMS += clock.rel
43clock_rel_SOURCES = clock/ckinit.c
44clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
45clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
46
47noinst_PROGRAMS += console.rel
48console_rel_SOURCES = console/console.c console/console-recording.h
49console_rel_CPPFLAGS = $(AM_CPPFLAGS)
50console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
51
52noinst_PROGRAMS += fatal.rel
53fatal_rel_SOURCES = fatal/bspfatal.c
54fatal_rel_CPPFLAGS = $(AM_CPPFLAGS)
55fatal_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
56
57noinst_PROGRAMS += timer.rel
58timer_rel_SOURCES = timer/timer.c timer/timerisr.S
59timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
60timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
61
62if HAS_NETWORKING
63network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
64noinst_PROGRAMS += network.rel
65network_rel_SOURCES = network/network.c
66network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
67network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
68endif
69
70noinst_LIBRARIES = libbsp.a
71libbsp_a_SOURCES =
72libbsp_a_LIBADD = clock.rel console.rel fatal.rel startup.rel timer.rel
73if HAS_NETWORKING
74libbsp_a_LIBADD += network.rel
75endif
76libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
77    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel \
78    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/fpsp.rel
79
80EXTRA_DIST += times
81
82include $(srcdir)/preinstall.am
83include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.