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

4.104.114.95
Last change on this file since 558bc25 was 558bc25, checked in by Joel Sherrill <joel.sherrill@…>, on 12/03/07 at 22:26:33

2007-12-03 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, startup/bspstart.c: Moved most of the remaining CPU Table fields to the Configuration Table. This included pretasking_hook, predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace, extra_mpci_receive_server_stack, stack_allocate_hook, and stack_free_hook. As a side-effect of this effort some multiprocessing code was made conditional and some style clean up occurred.
  • Property mode set to 100644
File size: 2.6 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
38noinst_PROGRAMS += startup.rel
39startup_rel_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
40    ../../shared/bsppredriverhook.c ../../shared/bsppost.c \
41    startup/bspstart.c ../../shared/bootcard.c \
42    ../../m68k/shared/m68kpretaskinghook.c \
43    startup/page_table.c ../../shared/sbrk.c ../../m68k/shared/setvec.c \
44    ../../shared/gnatinstallhandler.c
45startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
46startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
47
48noinst_PROGRAMS += clock.rel
49clock_rel_SOURCES = clock/ckinit.c
50clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
51clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
52
53noinst_PROGRAMS += console.rel
54console_rel_SOURCES = console/console.c ../../shared/dummy_printk_support.c
55console_rel_CPPFLAGS = $(AM_CPPFLAGS)
56console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
57
58noinst_PROGRAMS += timer.rel
59timer_rel_SOURCES = timer/timer.c timer/timerisr.S
60timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
61timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
62
63noinst_PROGRAMS += tod.rel
64tod_rel_SOURCES = tod/tod.c
65tod_rel_CPPFLAGS = $(AM_CPPFLAGS)
66tod_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
67
68if HAS_NETWORKING
69network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
70noinst_PROGRAMS += network.rel
71network_rel_SOURCES = ../mvme167/network/network.c
72network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
73network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
74endif
75#--
76noinst_LIBRARIES = libbsp.a
77libbsp_a_SOURCES =
78libbsp_a_LIBADD = startup.rel clock.rel console.rel timer.rel tod.rel
79if HAS_NETWORKING
80libbsp_a_LIBADD += network.rel
81endif
82libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
83    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
84if HAS_FPSP
85libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/fpsp.rel
86endif
87
88EXTRA_DIST += times
89
90include $(srcdir)/preinstall.am
91include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.