source: rtems/c/src/lib/libbsp/bfin/eZKit533/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: 1.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
17
18noinst_PROGRAMS =
19
20include_HEADERS += ../../shared/include/coverhd.h
21
22EXTRA_DIST = ../shared/start/start.S
23start.$(OBJEXT): ../shared/start/start.S
24        $(CPPASCOMPILE) -DASM -o $@ -c $<
25project_lib_DATA = start.$(OBJEXT)
26
27dist_project_lib_DATA += startup/linkcmds
28
29noinst_PROGRAMS += startup.rel
30startup_rel_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
31    ../../shared/bsppredriverhook.c startup/bspstart.c \
32    ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/setvec.c \
33    ../../shared/bootcard.c ../../shared/gnatinstallhandler.c
34startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
35startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
36
37noinst_PROGRAMS += clock.rel
38clock_rel_SOURCES = ../shared/clock/clockdrv.c ../shared/clock/rtc.c
39clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
40clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
41
42noinst_PROGRAMS += console.rel
43console_rel_SOURCES = console/console-io.c ../shared/console/console.c
44console_rel_CPPFLAGS =
45console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
46
47noinst_PROGRAMS += timer.rel
48timer_rel_SOURCES = ../shared/timer/timer.c
49timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
50timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
51
52noinst_LIBRARIES = libbsp.a
53libbsp_a_SOURCES =
54libbsp_a_LIBADD = startup.rel clock.rel console.rel timer.rel
55
56EXTRA_DIST += times
57
58include $(srcdir)/preinstall.am
59include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.