source: rtems/c/src/lib/libbsp/h8300/h8sim/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
RevLine 
[501d312]1##
2## $Id$
3##
4
[fe8bc62f]5ACLOCAL_AMFLAGS = -I ../../../../aclocal
[501d312]6
[9b0804eb]7include $(top_srcdir)/../../../../automake/compile.am
[501d312]8include $(top_srcdir)/../../bsp.am
9
[2a7f9a28]10dist_project_lib_DATA = bsp_specs
11
12include_HEADERS = include/bsp.h
[3defec6]13include_HEADERS += include/tm27.h
[db3fa14]14
[2a7f9a28]15nodist_include_HEADERS = include/bspopts.h
[db3fa14]16DISTCLEANFILES = include/bspopts.h
17noinst_PROGRAMS =
[9b0804eb]18
19nodist_include_HEADERS += ../../shared/include/coverhd.h
20
21EXTRA_DIST = start/start.S
[db3fa14]22start.$(OBJEXT): start/start.S
[57357d9]23        $(CPPASCOMPILE) -o $@ -c $<
[db3fa14]24project_lib_DATA = start.$(OBJEXT)
[9b0804eb]25
26dist_project_lib_DATA += startup/linkcmds
27
[db3fa14]28noinst_PROGRAMS += startup.rel
[9b0804eb]29startup_rel_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
[558bc25]30    ../../shared/bsppredriverhook.c \
[9b0804eb]31    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
[558bc25]32    ../../shared/sbrk.c ../../shared/gnatinstallhandler.c startup/__main.c
[844609f9]33startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
[9b0804eb]34startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
35
[db3fa14]36noinst_PROGRAMS += clock.rel
[9b0804eb]37clock_rel_SOURCES = ../../shared/clock_driver_stub.c
[844609f9]38clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
[9b0804eb]39clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
40
[db3fa14]41noinst_PROGRAMS += console.rel
[9b0804eb]42console_rel_SOURCES = ../../shared/console-polled.c console/console-io.c
[844609f9]43console_rel_CPPFLAGS = $(AM_CPPFLAGS)
[9b0804eb]44console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
45
[41b34c85]46noinst_PROGRAMS += timer.rel
47timer_rel_SOURCES = ../../shared/timerstub.c
48timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
49timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
50
[db3fa14]51noinst_LIBRARIES = libbsp.a
[9b0804eb]52libbsp_a_SOURCES =
[41b34c85]53libbsp_a_LIBADD = startup.rel clock.rel console.rel timer.rel
[9b0804eb]54
55EXTRA_DIST += times
[8d7f47f4]56
[dec6a8da]57include $(srcdir)/preinstall.am
[61ffa76b]58include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.