source: rtems/c/src/lib/libbsp/powerpc/score603e/wrapup/Makefile.am @ 80e5391

4.104.114.84.95
Last change on this file since 80e5391 was 80e5391, checked in by Joel Sherrill <joel.sherrill@…>, on 07/07/00 at 19:36:14

Moved old_exception_processing and new_exception_processing directories
from score/cpu to libcpu because the determination of which to use is
based on RTEMS_CPU_MODEL. Thus it can not be determined based solely on
multilib information.

  • Property mode set to 100644
File size: 878 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7BSP_PIECES = startup clock console timer tod vectors PCI_bus
8# pieces to pick up out of libcpu/$(RTEMS_CPU)
9
10# bummer; have to use $foreach since % pattern subst rules only replace 1x
11OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
12 $(wildcard ../../../../libcpu/powerpc/old_exception_processing/$(ARCH)/*.rel)
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.