source: rtems/c/src/lib/libbsp/mips/rbtx4925/Makefile.am @ b68c2f74

4.104.115
Last change on this file since b68c2f74 was b68c2f74, checked in by Joel Sherrill <joel.sherrill@…>, on 05/13/10 at 18:08:36

2010-05-13 Joel Sherrill <joel.sherrill@…>

  • Makefile.am: rbtx4925 and rbtx4938 had copies of the same file with only minor differences. Both now use shared/irq/exception.S
  • startup/exception.S: Removed.
  • Property mode set to 100644
File size: 1.7 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
15
16nodist_include_HEADERS = include/bspopts.h
17nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
18DISTCLEANFILES = include/bspopts.h
19
20noinst_PROGRAMS =
21
22nodist_include_HEADERS += ../../shared/include/coverhd.h
23
24noinst_LIBRARIES = libbspstart.a
25libbspstart_a_SOURCES = start/start.S
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/bsppredriverhook.c \
35    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
36    ../../shared/bsplibc.c ../../shared/bsppost.c startup/bspstart.c \
37    ../../shared/bootcard.c ../../shared/sbrk.c \
38    ../../shared/gnatinstallhandler.c ../../shared/setvec.c \
39    startup/inittlb.c \
40    startup/idtmem.S startup/idttlb.S ../shared/irq/exception.S
41
42# clock
43noinst_PROGRAMS += clock.rel
44clock_rel_SOURCES = clock/clockdrv.c ../../../shared/clockdrv_shell.h
45clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
46clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
47
48# console
49libbsp_a_SOURCES += console/console-io.c
50
51# liblnk
52libbsp_a_SOURCES += liblnk/lnklib.S liblnk/pmon.S liblnk/regs.h
53
54libbsp_a_LIBADD = \
55    clock.rel \
56    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
57    ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel \
58    ../../../libcpu/@RTEMS_CPU@/tx49/timer.rel \
59    ../../../libcpu/@RTEMS_CPU@/tx49/vectorisrs.rel
60
61include $(srcdir)/preinstall.am
62include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.