source: rtems/c/src/lib/libbsp/mips/csb350/Makefile.am @ 8d9c428c

4.9
Last change on this file since 8d9c428c was 8d9c428c, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 13:25:38

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

  • start/regs.S: Remove (Renamed into start/regs.h).
  • start/regs.h: New (Renamed from start/regs.S).
  • Makefile.am, start/start.S: Reflect renamer.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10dist_project_lib_DATA = bsp_specs
11
12include_HEADERS = include/bsp.h
13include_HEADERS += include/tm27.h
14
15nodist_include_HEADERS = include/bspopts.h
16DISTCLEANFILES = include/bspopts.h
17nodist_include_HEADERS += ../../shared/include/coverhd.h
18
19noinst_PROGRAMS =
20
21EXTRA_DIST = start/start.S start/regs.h
22start.$(OBJEXT): start/start.S
23        $(CPPASCOMPILE) -o $@ -c $<
24project_lib_DATA = start.$(OBJEXT)
25
26dist_project_lib_DATA += startup/linkcmds
27
28startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
29    ../../shared/bsppredriverhook.c ../../shared/bsppost.c \
30    startup/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
31    ../../shared/gnatinstallhandler.c ../../shared/setvec.c
32clock_SOURCES = clock/clockdrv.c
33console_SOURCES = console/console-io.c ../../shared/console-polled.c
34timer_SOURCES = timer/timer.c
35
36if HAS_NETWORKING
37network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
38noinst_PROGRAMS += network.rel
39network_rel_SOURCES = network/network.c
40network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
41network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
42endif
43
44noinst_LIBRARIES = libbsp.a
45libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
46    $(timer_SOURCES)
47
48libbsp_a_LIBADD = \
49    ../../../libcpu/mips/shared/cache.rel \
50    ../../../libcpu/mips/shared/interrupts.rel \
51    ../../../libcpu/mips/au1x00/vectorisrs.rel
52if HAS_NETWORKING
53libbsp_a_LIBADD += network.rel
54endif
55
56include $(srcdir)/preinstall.am
57include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.