source: rtems/c/src/lib/libbsp/mips/genmongoosev/Makefile.am @ afab2f7

4.115
Last change on this file since afab2f7 was afab2f7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/19/11 at 07:27:07

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

  • Makefile.am: Fix broken path to clockdrv_shell.h.
  • Property mode set to 100644
File size: 1.9 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 += include/tm27.h
15include_bsp_HEADERS = start/regs.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
24noinst_LIBRARIES = libbspstart.a
25libbspstart_a_SOURCES = start/start.S start/regs.h start/mg5.h
26project_lib_DATA = start.$(OBJEXT)
27
28dist_project_lib_DATA += startup/linkcmds
29
30noinst_LIBRARIES += libbsp.a
31libbsp_a_SOURCES =
32
33# startup
34libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsppretaskinghook.c \
35    ../../shared/bsppredriverhook.c ../../shared/bsplibc.c \
36    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
37    ../../shared/sbrk.c ../../shared/gnatinstallhandler.c \
38    ../../shared/setvec.c ../../shared/bspgetworkarea.c
39# clock
40libbsp_a_SOURCES += clock/clockdrv.c
41libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
42# console
43libbsp_a_SOURCES += console/conscfg.c ../../shared/console.c
44# timer
45libbsp_a_SOURCES += timer/timer.c
46
47gdbstub_CPPFLAGS = -I$(srcdir)/../../mips/shared/gdbstub
48noinst_PROGRAMS += gdbstub.rel
49gdbstub_rel_SOURCES = ../../mips/shared/gdbstub/mips-stub.c \
50    startup/gdb-support.c ../../shared/gdbstub/rtems-stub-glue.c
51gdbstub_rel_CPPFLAGS = $(AM_CPPFLAGS) $(gdbstub_CPPFLAGS)
52gdbstub_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
53
54libbsp_a_LIBADD = \
55    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
56    ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel \
57    ../../../libcpu/@RTEMS_CPU@/mongoosev/duart.rel \
58    ../../../libcpu/@RTEMS_CPU@/mongoosev/vectorisrs.rel
59
60include $(srcdir)/preinstall.am
61include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.