source: rtems/c/src/lib/libbsp/sh/simsh4/Makefile.am @ 625ef85

Last change on this file since 625ef85 was 625ef85, checked in by Joel Sherrill <joel.sherrill@…>, on 04/02/07 at 11:18:03

2007-04-02 Joel Sherrill <joel@…>

  • Makefile.am: Add dummy printk support so all tests link.
  • Property mode set to 100644
File size: 1.8 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
17noinst_PROGRAMS =
18
19SUBDIRS = . tools
20
21# FIXME: This directory is missing
22# ramdisk
23
24include_HEADERS += include/syscall.h
25include_HEADERS += include/ramdisk.h
26include_HEADERS += include/coverhd.h
27
28EXTRA_DIST = start/start.S
29start.$(OBJEXT): start/start.S
30        $(CPPASCOMPILE) -o $@ -c $<
31project_lib_DATA = start.$(OBJEXT)
32
33dist_project_lib_DATA += startup/linkcmds startup/linkcmds-le \
34    startup/linkcmds-le.coff
35
36noinst_PROGRAMS += startup.rel
37startup_rel_SOURCES = startup/hw_init.c ../../shared/bsplibc.c \
38    ../../shared/bsppost.c startup/bspstart.c ../../shared/bspclean.c \
39    ../../shared/sbrk.c ../../shared/bootcard.c ../../shared/main.c \
40    ../../shared/gnatinstallhandler.c
41startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
42startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
43
44noinst_PROGRAMS += console.rel
45console_rel_SOURCES = console/console.c ../../shared/dummy_printk_support.c
46console_rel_CPPFLAGS = $(AM_CPPFLAGS)
47console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
48
49noinst_PROGRAMS += clock.rel
50clock_rel_SOURCES = clock/ckinit.c
51clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
52clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
53
54noinst_PROGRAMS += timer.rel
55timer_rel_SOURCES = timer/timer.c
56timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
57timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
58
59noinst_LIBRARIES = libbsp.a
60libbsp_a_SOURCES =
61libbsp_a_LIBADD = startup.rel console.rel clock.rel timer.rel
62# FIXME: This is missing.
63# libbsp_a_LIBADD += ramdisk.rel
64libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
65
66include $(srcdir)/preinstall.am
67include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.