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

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

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

  • Makefile.am, configure.ac, clock/clockdrv.c, include/bsp.h, start/start.S, startup/linkcmds: Now runs ticker and hello on sh-rtems4.10-gdb. The SH simulator in gdb has no hardware IO or interrupt simulation so we use the trap interface to print.
  • gdbsci/gdbsci.c: Removed.
  • 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 += 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
43
44trap34_SOURCES = trap34/console-io.c trap34/console-support.S \
45    ../../shared/dummy_printk_support.c
46console_SOURCES = ../../shared/console-polled.c
47
48noinst_LIBRARIES = libbsp.a
49libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
50    $(scitab_SOURCES) $(trap34_SOURCES)
51
52libbsp_a_LIBADD = \
53    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
54
55include $(srcdir)/preinstall.am
56include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.