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

4.104.115
Last change on this file since e7791906 was e7791906, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:03:42

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, clock/ckinit.c, startup/bspstart.c: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. Remove unnecessary includes of rtems/libio.h and rtems/libcsupport.h.
  • 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
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) -o $@ -c $<
28
29project_lib_DATA = start.$(OBJEXT)
30
31dist_project_lib_DATA += startup/linkcmds
32
33startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
34    ../../shared/bsppredriverhook.c \
35    ../../m68k/shared/m68kbspgetworkarea.c \
36    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
37    ../../shared/bsppretaskinghook.c startup/page_table.c \
38    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
39    ../../shared/gnatinstallhandler.c
40clock_SOURCES = clock/ckinit.c
41console_SOURCES = console/console.c console/console-recording.h
42fatal_SOURCES = fatal/bspfatal.c
43timer_SOURCES = timer/timer.c timer/timerisr.S
44
45if HAS_NETWORKING
46network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
47noinst_PROGRAMS += network.rel
48network_rel_SOURCES = network/network.c
49network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
50network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
51endif
52
53noinst_LIBRARIES = libbsp.a
54libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
55    $(fatal_SOURCES) $(timer_SOURCES)
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.