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

4.104.115
Last change on this file since abe3261 was abe3261, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/24/08 at 07:03:17

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

  • Makefile.am: Cosmetics.
  • Property mode set to 100644
File size: 2.2 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
19# wrapup is the one that actually builds and installs the library
20# from the individual .rel files built in other directories
21# XXX ignore tools since it doesn't build
22SUBDIRS = .
23
24include_HEADERS += ../../shared/tod.h
25include_HEADERS += include/coverhd.h
26include_HEADERS += include/page_table.h
27
28nodist_include_HEADERS += $(top_srcdir)/../shared/mvme/mvme16x_hw.h
29
30EXTRA_DIST = ../../m68k/shared/start.S
31start.$(OBJEXT): ../../m68k/shared/start.S
32        $(CPPASCOMPILE) -o $@ -c $<
33
34project_lib_DATA = start.$(OBJEXT)
35
36dist_project_lib_DATA += startup/linkcmds
37
38startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
39    ../../shared/bsppredriverhook.c ../../shared/bsppost.c \
40    startup/bspstart.c ../../shared/bootcard.c  \
41    ../../shared/bsppretaskinghook.c startup/page_table.c \
42    ../../shared/bspgetworkarea.c startup/page_table.c \
43    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
44    ../../shared/gnatinstallhandler.c
45clock_SOURCES = clock/ckinit.c
46console_SOURCES = console/console.c ../../shared/dummy_printk_support.c
47timer_SOURCES = timer/timer.c timer/timerisr.S
48tod_SOURCES = tod/tod.c
49
50if HAS_NETWORKING
51network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
52noinst_PROGRAMS += network.rel
53network_rel_SOURCES = ../mvme167/network/network.c
54network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
55network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
56endif
57
58noinst_LIBRARIES = libbsp.a
59libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
60    $(timer_SOURCES) $(tod_SOURCES)
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.