source: rtems/c/src/lib/libbsp/mips/csb350/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.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
17nodist_include_HEADERS += ../../shared/include/coverhd.h
18
19noinst_PROGRAMS =
20
21EXTRA_DIST = start/start.S start/regs.S
22start.$(OBJEXT): start/start.S
23        $(CPPASCOMPILE) -o $@ -c $<
24project_lib_DATA = start.$(OBJEXT)
25
26dist_project_lib_DATA += startup/linkcmds
27
28noinst_PROGRAMS += clock.rel
29clock_rel_SOURCES = clock/clockdrv.c
30clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
31clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
32
33noinst_PROGRAMS += console.rel
34console_rel_SOURCES = console/console-io.c ../../shared/console-polled.c
35console_rel_CPPFLAGS = $(AM_CPPFLAGS)
36console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
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 ../../shared/sbrk.c \
42    ../../shared/gnatinstallhandler.c ../../shared/setvec.c
43startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
44startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
45
46noinst_PROGRAMS += timer.rel
47timer_rel_SOURCES = timer/timer.c
48timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
49timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
50
51if HAS_NETWORKING
52network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
53noinst_PROGRAMS += network.rel
54network_rel_SOURCES = network/network.c
55network_rel_CPPFLAGS = $(AM_CPPFLAGS) \
56    $(network_CPPFLAGS)
57network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
58endif
59
60noinst_LIBRARIES = libbsp.a
61libbsp_a_SOURCES =
62libbsp_a_LIBADD = startup.rel clock.rel \
63    console.rel timer.rel
64if HAS_NETWORKING
65libbsp_a_LIBADD += network.rel
66endif
67libbsp_a_LIBADD += ../../../libcpu/mips/shared/cache.rel \
68    ../../../libcpu/mips/shared/interrupts.rel \
69    ../../../libcpu/mips/au1x00/vectorisrs.rel
70
71include $(srcdir)/preinstall.am
72include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.