source: rtems/c/src/lib/libbsp/powerpc/mbx8xx/wrapup/Makefile.am @ 134b163f

4.104.114.84.95
Last change on this file since 134b163f was 134b163f, checked in by Joel Sherrill <joel.sherrill@…>, on 06/14/00 at 15:47:38

Removed building of libcpu.a. It is now the individual BSPs
responsibility to explicitly pick up the components they
require. This makes it easier to override default implmentations.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[8ef3818]1##
2## $Id$
3##
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
12BSP_PIECES = startup console $(NETWORKING)
13# pieces to pick up out of libcpu/ppc
14# CPU_PIECES = mpc8xx/clock mpc8xx/console-generic mpc8xx/cpm \
15              mpc8xx/mmu mpc8xx/timer mpc8xx/vectors
16
17# bummer; have to use $foreach since % pattern subst rules only replace 1x
[134b163f]18OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
19    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.o) \
20    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/mpc8xx/*/$(ARCH)/*.o)
[8ef3818]21LIB = $(ARCH)/libbsp.a
22
23include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
24include $(top_srcdir)/../../../../../../automake/lib.am
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30$(LIB): $(OBJS)
31        $(make-library)
32
33$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
34        $(INSTALL_DATA) $< $@
35
36TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
37
38all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
39
40.PRECIOUS: $(LIB)
41
42include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.