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

4.104.115
Last change on this file since a1bc0a15 was a1bc0a15, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/26/08 at 04:56:17

2008-09-26 Ralf Corsépius <ralf.corsepius@…>

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