source: rtems/c/src/lib/libbsp/mips/rbtx4938/Makefile.am @ 44c5277

4.115
Last change on this file since 44c5277 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.8 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 += ../../shared/include/tm27.h
15include_bsp_HEADERS = ../shared/liblnk/regs.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES = include/bspopts.h
20
21noinst_PROGRAMS =
22
23nodist_include_HEADERS += ../../shared/include/coverhd.h
24
25noinst_LIBRARIES = libbspstart.a
26libbspstart_a_SOURCES = start/start.S
27project_lib_DATA = start.$(OBJEXT)
28
29dist_project_lib_DATA += startup/linkcmds
30
31noinst_LIBRARIES += libbsp.a
32libbsp_a_SOURCES =
33
34# startup
35libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsppredriverhook.c \
36    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
37    ../../shared/bsplibc.c ../../shared/bsppost.c startup/bspstart.c \
38    ../../shared/bootcard.c ../../shared/sbrk.c \
39    ../../shared/gnatinstallhandler.c ../../shared/setvec.c \
40    startup/inittlb.c ../shared/startup/idttlb.S \
41    ../shared/startup/idtmem.S ../shared/irq/exception.S
42
43# clock
44noinst_PROGRAMS += clock.rel
45clock_rel_SOURCES = clock/clockdrv.c
46clock_rel_SOURCES += ../../shared/clockdrv_shell.h
47clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
48clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
49
50# console
51libbsp_a_SOURCES += console/console-io.c
52# liblnk
53libbsp_a_SOURCES += ../shared/liblnk/lnklib.S ../shared/liblnk/pmon.S \
54    ../shared/liblnk/regs.h
55
56libbsp_a_LIBADD = \
57    clock.rel \
58    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
59    ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel \
60    ../../../libcpu/@RTEMS_CPU@/tx49/timer.rel \
61    ../../../libcpu/@RTEMS_CPU@/tx49/vectorisrs.rel
62
63include $(srcdir)/preinstall.am
64include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.