source: rtems/c/src/lib/libbsp/mips/jmr3904/Makefile.am @ 1d0ee80e

4.104.114.95
Last change on this file since 1d0ee80e was 1d0ee80e, checked in by Joel Sherrill <joel.sherrill@…>, on 05/14/08 at 20:28:09

2008-05-14 Joel Sherrill <joel.sherrill@…>

  • Makefile.am: Rework to avoid .rel files.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7# wrapup is the one that actually builds and installs the library
8# from the individual .rel files built in other directories
9SUBDIRS = . tools
10
11include $(top_srcdir)/../../../../automake/compile.am
12include $(top_srcdir)/../../bsp.am
13
14dist_project_lib_DATA = bsp_specs
15
16include_HEADERS = include/bsp.h
17include_HEADERS += include/tm27.h
18
19nodist_include_HEADERS = include/bspopts.h
20DISTCLEANFILES = include/bspopts.h
21noinst_PROGRAMS =
22
23nodist_include_HEADERS += ../../shared/include/coverhd.h
24
25EXTRA_DIST = start/start.S start/regs.S
26start.$(OBJEXT): start/start.S
27        $(CPPASCOMPILE) -o $@ -c $<
28project_lib_DATA = start.$(OBJEXT)
29
30dist_project_lib_DATA += startup/linkcmds
31
32startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
33    ../../shared/bsppredriverhook.c ../../shared/bsppost.c \
34    ../../shared/bsppretaskinghook.c \
35    startup/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
36    ../../shared/gnatinstallhandler.c ../../shared/setvec.c
37clock_SOURCES = clock/clockdrv.c
38console_SOURCES = ../../shared/console-polled.c console/console-io.c
39timer_SOURCES = timer/timer.c
40
41noinst_LIBRARIES = libbsp.a
42libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
43    $(timer_SOURCES)
44
45libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
46    ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel \
47    ../../../libcpu/@RTEMS_CPU@/tx39/vectorisrs.rel
48
49include $(srcdir)/preinstall.am
50include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.