source: rtems/c/src/lib/libbsp/sh/shsim/Makefile.am @ 8f402bf

4.104.115
Last change on this file since 8f402bf was 8f402bf, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 20:13:24

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

  • Makefile.am, startup/linkcmds, startup/linkcmds.sim: Use top level shared bsp_get_work_area() implementation.
  • Property mode set to 100644
File size: 1.7 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 += include/gdbsci.h
21nodist_include_HEADERS += ../../shared/include/coverhd.h
22
23EXTRA_DIST = start/start.S
24start.$(OBJEXT): start/start.S
25        $(CPPASCOMPILE) -o $@ -c $<
26project_lib_DATA = start.$(OBJEXT)
27
28dist_project_lib_DATA += startup/linkcmds startup/linkcmds.sim
29
30SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
31
32scitab.c: $(SHGEN)
33        $(SHGEN) -H @CPU_CLOCK_RATE_HZ@ sci > $@
34BUILT_SOURCES = scitab.c
35CLEANFILES = scitab.c
36
37startup_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
38    ../../shared/bsppredriverhook.c ../shared/bspstart.c \
39    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
40    ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/bootcard.c \
41    ../../shared/gnatinstallhandler.c ../shared/bsphwinit.c
42clock_SOURCES = clock/clockdrv.c
43scitab_SOURCES = scitab.c
44gdbsci_SOURCES = gdbsci/gdbsci.c
45
46# FIXME: trap34 is unused
47trap34_SOURCES = trap34/console-io.c trap34/console-support.S \
48    ../../shared/dummy_printk_support.c
49console_SOURCES = ../../sh/shared/console.c
50
51noinst_LIBRARIES = libbsp.a
52libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
53    $(gdbsci_SOURCES) $(scitab_SOURCES) $(trap34_SOURCES)
54
55libbsp_a_LIBADD = \
56    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
57
58include $(srcdir)/preinstall.am
59include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.