source: rtems/c/src/lib/libbsp/m68k/mvme162/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.3 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
22# wrapup is the one that actually builds and installs the library
23# from the individual .rel files built in other directories
24# XXX ignore tools since it doesn't build
25SUBDIRS = .
26
27include_HEADERS += ../../shared/tod.h
28include_HEADERS += include/coverhd.h
29include_HEADERS += include/page_table.h
30
31nodist_include_HEADERS += $(top_srcdir)/../shared/mvme/mvme16x_hw.h
32
33EXTRA_DIST = ../../m68k/shared/start.S
34start.$(OBJEXT): ../../m68k/shared/start.S
35        $(CPPASCOMPILE) -o $@ -c $<
36
37project_lib_DATA = start.$(OBJEXT)
38
39dist_project_lib_DATA += startup/linkcmds
40
41startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
42    ../../shared/bsppredriverhook.c ../../shared/bsppost.c \
43    startup/bspstart.c ../../shared/bootcard.c  \
44    ../../shared/bsppretaskinghook.c startup/page_table.c \
45    ../../shared/bspgetworkarea.c startup/page_table.c \
46    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
47    ../../shared/gnatinstallhandler.c
48clock_SOURCES = clock/ckinit.c
49console_SOURCES = console/console.c ../../shared/dummy_printk_support.c
50timer_SOURCES = timer/timer.c timer/timerisr.S
51tod_SOURCES = tod/tod.c
52
53if HAS_NETWORKING
54network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
55noinst_PROGRAMS += network.rel
56network_rel_SOURCES = ../mvme167/network/network.c
57network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
58network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
59endif
60
61noinst_LIBRARIES = libbsp.a
62libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
63    $(timer_SOURCES) $(tod_SOURCES)
64
65libbsp_a_LIBADD = \
66    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
67    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
68if HAS_NETWORKING
69libbsp_a_LIBADD += network.rel
70endif
71if HAS_FPSP
72libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/fpsp.rel
73endif
74
75EXTRA_DIST += times
76
77include $(srcdir)/preinstall.am
78include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.