source: rtems/c/src/lib/libbsp/sh/gensh1/Makefile.am @ 9957dbf

4.104.115
Last change on this file since 9957dbf was 9957dbf, checked in by Joel Sherrill <joel.sherrill@…>, on 10/02/08 at 21:39:40

2008-10-02 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, preinstall.am: Use shared tm27.h stub.
  • include/tm27.h: Removed.
  • 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
8
9include_bspdir = $(includedir)/bsp
10
11dist_project_lib_DATA = bsp_specs
12
13include_HEADERS = include/bsp.h
14include_HEADERS += ../../shared/include/tm27.h
15
16nodist_include_HEADERS = include/bspopts.h
17nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
18DISTCLEANFILES = include/bspopts.h
19
20include_HEADERS += include/coverhd.h
21
22noinst_LIBRARIES = libbspstart.a
23libbspstart_a_SOURCES = start/start.S
24project_lib_DATA = start.$(OBJEXT)
25
26dist_project_lib_DATA += startup/linkcmds
27
28noinst_LIBRARIES += libbsp.a
29libbsp_a_SOURCES =
30
31SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
32
33scitab.c: $(SHGEN)
34        $(SHGEN) -H @CPU_CLOCK_RATE_HZ@ sci > $@
35BUILT_SOURCES = scitab.c
36CLEANFILES = scitab.c
37
38# startup
39libbsp_a_SOURCES += ../../shared/bsplibc.c ../../shared/bsppost.c \
40    ../../shared/bsppredriverhook.c ../shared/bspstart.c \
41    ../../shared/bspclean.c ../../shared/bspreset_fatal.c \
42    ../../shared/bspgetworkarea.c ../../shared/bsppretaskinghook.c \
43    ../../shared/sbrk.c ../../shared/bootcard.c ../shared/bsphwinit.c \
44    ../../shared/gnatinstallhandler.c
45# scitab
46libbsp_a_SOURCES += scitab.c
47# console
48libbsp_a_SOURCES += ../../sh/shared/console.c
49# debugio
50libbsp_a_SOURCES += ../../shared/dummy_printk_support.c
51
52libbsp_a_LIBADD = \
53    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
54    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel \
55    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/sci.rel \
56    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/delay.rel \
57    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
58
59EXTRA_DIST = times
60
61include $(srcdir)/preinstall.am
62include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.