source: rtems/c/src/lib/libbsp/sh/gensh2/Makefile.am @ 7be8d6b

4.9
Last change on this file since 7be8d6b was 7be8d6b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 01:48:04

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Remove noinst_PROGRAMS (Unused).
  • 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
18include_HEADERS += include/coverhd.h
19
20EXTRA_DIST = start/start.S start/start.ram start/start.rom
21start.$(OBJEXT): start/start.S
22        $(CPPASCOMPILE) -o $@ -c $<
23project_lib_DATA = start.$(OBJEXT)
24
25dist_project_lib_DATA += startup/linkcmds startup/linkcmds.ram \
26    startup/linkcmds.rom
27
28SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
29
30scitab.c: $(SHGEN)
31        $(SHGEN) -H @CPU_CLOCK_RATE_HZ@ sci > $@
32BUILT_SOURCES = scitab.c
33CLEANFILES = scitab.c
34
35startup_SOURCES = startup/hw_init.c ../../shared/bsplibc.c \
36    ../../shared/bsppost.c ../../shared/bsppredriverhook.c \
37    startup/bspstart.c startup/bspclean.c ../../shared/sbrk.c \
38    ../../shared/bootcard.c ../../shared/gnatinstallhandler.c
39scitab_SOURCES = scitab.c
40console_SOURCES = ../../sh/shared/console.c console/config.c
41debugio_SOURCES = ../../shared/dummy_printk_support.c
42
43noinst_LIBRARIES = libbsp.a
44libbsp_a_SOURCES = $(startup_SOURCES) $(scitab_SOURCES) $(console_SOURCES) \
45    $(debugio_SOURCES)
46libbsp_a_LIBADD = \
47    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
48    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel \
49    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/sci.rel \
50    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
51
52include $(srcdir)/preinstall.am
53include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.