source: rtems/c/src/lib/libbsp/powerpc/mbx8xx/wrapup/Makefile.am @ 35bb69b

4.104.114.84.95
Last change on this file since 35bb69b was 35bb69b, checked in by Joel Sherrill <joel.sherrill@…>, on 04/06/01 at 15:52:03

2001-03-30 Eric Valette <valette@…>

  • clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, include/8xx_immap.h, include/commproc.h, include/mbx.h, irq/.cvsignore, irq/Makefile.am, irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c, vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S, vectors/vectors.h, vectors/vectors_init.c: New files.
  • Makefile.am, configure.in, console/console.c, include/Makefile.am, network/network.c, startup/Makefile.am, startup/bspstart.c, startup/imbx8xx.c, startup/linkcmds, startup/mmutlbtab.c, startup/start.S, wrapup/Makefile.am: The modifications to this BSP reflect the conversion of the mpc8xx CPU to the "new exception processing model."
  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[761feae]1##
[8ef3818]2## $Id$
[761feae]3##
[8ef3818]4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7# We only build the networking device driver if HAS_NETWORKING was defined
8if HAS_NETWORKING
9NETWORKING = network
10endif
11
[35bb69b]12BSP_PIECES = clock irq startup console vectors $(NETWORKING)
[8ef3818]13# pieces to pick up out of libcpu/ppc
14# CPU_PIECES = mpc8xx/clock mpc8xx/console-generic mpc8xx/cpm \
[761feae]15#              mpc8xx/mmu mpc8xx/timer mpc8xx/vectors
[8ef3818]16
17# bummer; have to use $foreach since % pattern subst rules only replace 1x
[134b163f]18OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
[761feae]19    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.o) \
[35bb69b]20    $(wildcard ../../../../libcpu/powerpc/new_exception_processing/$(ARCH)/*.rel) \
[761feae]21    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/mpc8xx/*/$(ARCH)/*.o)
[8ef3818]22LIB = $(ARCH)/libbsp.a
23
24include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[761feae]25include $(top_srcdir)/../../../../../../automake/compile.am
[8ef3818]26include $(top_srcdir)/../../../../../../automake/lib.am
27
28#
29# (OPTIONAL) Add local stuff here using +=
30#
31
32$(LIB): $(OBJS)
33        $(make-library)
34
35$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
36        $(INSTALL_DATA) $< $@
37
38TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
39
40all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
41
42.PRECIOUS: $(LIB)
43
44include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.