source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/wrapup/Makefile.am @ 84b68f5f

4.104.114.84.95
Last change on this file since 84b68f5f was 84b68f5f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/30/04 at 13:09:40

2004-01-30 Ralf Corsepius <corsepiu@…>

  • wrapup/Makefile.am: Reflect changes to ../support/*exception_processing/*.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5# We only build the networking device driver if HAS_NETWORKING was defined
6if HAS_NETWORKING
7NETWORKING = network
8endif
9
10BSP_PIECES = clock irq start startup console vectors $(NETWORKING)
11
12# bummer; have to use $foreach since % pattern subst rules only replace 1x
13OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT)) \
14    $(wildcard ../../../../libcpu/powerpc/shared/*/$(ARCH)/*.$(OBJEXT)) \
15    ../@exceptions@/rtems-cpu$(LIB_VARIANT).rel \
16    ../../../../libcpu/powerpc/mpc8260/clock$(LIB_VARIANT).rel \
17    ../../../../libcpu/powerpc/mpc8260/console-generic$(LIB_VARIANT).rel \
18    ../../../../libcpu/powerpc/mpc8260/cpm$(LIB_VARIANT).rel \
19    ../../../../libcpu/powerpc/mpc8260/mmu$(LIB_VARIANT).rel \
20    ../../../../libcpu/powerpc/mpc8260/timer$(LIB_VARIANT).rel \
21    ../../../../libcpu/powerpc/mpc8260/exceptions$(LIB_VARIANT).rel
22
23include $(top_srcdir)/../../../../automake/compile.am
24include $(top_srcdir)/../../../../automake/lib.am
25
26$(ARCH)/libbsp.a: $(OBJS)
27        $(make-library)
28
29noinst_DATA = $(ARCH)/libbsp.a
30
31include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.