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

4.104.115
Last change on this file since e94666d was e94666d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 03:43:47

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Move noinst_LIBRARIES = libbsp.a before its components.
  • Property mode set to 100644
File size: 1.6 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
14include_bspdir = $(includedir)/bsp
15
16dist_project_lib_DATA = bsp_specs
17
18include_HEADERS = include/bsp.h
19include_HEADERS += include/tm27.h
20
21nodist_include_HEADERS = include/bspopts.h
22nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
23DISTCLEANFILES = include/bspopts.h
24
25nodist_include_HEADERS += ../../shared/include/coverhd.h
26
27EXTRA_DIST = start/start.S start/regs.S
28start.$(OBJEXT): start/start.S
29        $(CPPASCOMPILE) -o $@ -c $<
30project_lib_DATA = start.$(OBJEXT)
31
32dist_project_lib_DATA += startup/linkcmds
33
34noinst_LIBRARIES = libbsp.a
35
36startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
37    ../../shared/bsppredriverhook.c ../../shared/bsppost.c \
38    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
39    startup/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
40    ../../shared/gnatinstallhandler.c ../../shared/setvec.c
41clock_SOURCES = clock/clockdrv.c
42console_SOURCES = ../../shared/console-polled.c console/console-io.c
43timer_SOURCES = timer/timer.c
44
45libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
46    $(timer_SOURCES)
47
48libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
49    ../../../libcpu/@RTEMS_CPU@/shared/interrupts.rel \
50    ../../../libcpu/@RTEMS_CPU@/tx39/vectorisrs.rel
51
52include $(srcdir)/preinstall.am
53include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.