source: rtems/c/src/lib/libbsp/m32r/m32rsim/Makefile.am @ 386a963

4.115
Last change on this file since 386a963 was 386a963, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/20/11 at 10:58:50

2011-06-20 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Don't reference non-existing files.
  • Property mode set to 100644
File size: 1.4 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
20noinst_PROGRAMS =
21
22nodist_include_HEADERS += ../../shared/include/coverhd.h
23
24EXTRA_DIST = start/start.S
25start.$(OBJEXT): start/start.S
26        $(CPPASCOMPILE) -o $@ -c $<
27project_lib_DATA = start.$(OBJEXT)
28
29dist_project_lib_DATA += startup/linkcmds
30
31startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
32    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
33    ../../shared/bspgetworkarea.c ../../shared/bsppost.c \
34    ../../shared/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
35    ../../shared/gnatinstallhandler.c startup/bspreset.c
36clock_SOURCES = ../../shared/clock_driver_simidle.c
37console_SOURCES = ../../shared/console-polled.c console/console-io.c \
38   console/trap0.S
39timer_SOURCES = ../../shared/timerstub.c
40
41noinst_LIBRARIES = libbsp.a
42libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
43    $(timer_SOURCES)
44
45include $(srcdir)/preinstall.am
46include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.