source: rtems/c/src/lib/libbsp/sh/gensh4/Makefile.am @ e94666d

4.104.115
Last change on this file since e94666d was e94666d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 03:43:47

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

  • Makefile.am: Move noinst_LIBRARIES = libbsp.a before its components.
  • 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
10include_bspdir = $(includedir)/bsp
11
12dist_project_lib_DATA = bsp_specs
13
14include_HEADERS = include/bsp.h
15include_HEADERS += include/tm27.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES = include/bspopts.h
20
21include_HEADERS += include/sdram.h
22include_HEADERS += include/coverhd.h
23
24EXTRA_DIST = start/start.S
25start.$(OBJEXT): start/start.S
26        $(CPPASCOMPILE) -o $@ -c $<
27
28project_lib_DATA = start.$(OBJEXT)
29
30dist_project_lib_DATA += startup/linkcmds startup/linkcmds.rom \
31    startup/linkcmds.rom2ram
32
33noinst_LIBRARIES = libbsp.a
34
35startup_SOURCES = ../../shared/bsplibc.c ../../shared/bsppost.c \
36    ../../shared/bsppredriverhook.c ../shared/bspstart.c \
37    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
38    ../../shared/bspclean.c ../../shared/sbrk.c ../../shared/bootcard.c \
39    ../../shared/gnatinstallhandler.c ../shared/bsphwinit.c
40console_SOURCES = console/console.c ../../shared/dummy_printk_support.c
41hw_init_SOURCES = hw_init/hw_init.c
42
43libbsp_a_SOURCES = $(startup_SOURCES) $(hw_init_SOURCES) $(console_SOURCES)
44
45libbsp_a_LIBADD = \
46    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
47    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel \
48    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/sci.rel \
49    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
50
51EXTRA_DIST += times
52
53include $(srcdir)/preinstall.am
54include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.