source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/wrapup/Makefile.am @ 14210f52

4.104.114.84.95
Last change on this file since 14210f52 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: 908 bytes
RevLine 
[df49c60]1##
[4e36a2f]2## $Id$
[df49c60]3##
[4e36a2f]4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7BSP_PIECES = clock console irq openpic pci residual startup vectors motorola
8
9# bummer; have to use $foreach since % pattern subst rules only replace 1x
[134b163f]10OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/*.o) \
11    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.o) \
12    $(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/*/$(ARCH)/*.o)
[4e36a2f]13LIB = $(ARCH)/libbsp.a
14
15include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
16include $(top_srcdir)/../../../../../../automake/lib.am
17
18#
19# (OPTIONAL) Add local stuff here using +=
20#
21
22$(LIB): $(OBJS)
23        $(make-library)
24
25$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
26        $(INSTALL_DATA) $< $@
27
28TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
29
30all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
31
32.PRECIOUS: $(LIB)
33
34include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.