source: rtems/c/src/lib/libbsp/powerpc/mbx8xx/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: 1.2 KB
Line 
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
18OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
19 $(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/*/$(ARCH)/*.o) \
20 $(wildcard ../../../../libcpu/powerpc/old_exception_processing/$(ARCH)/*.rel) \
21 $(wildcard ../../../../libcpu/$(RTEMS_CPU)/mpc8xx/*/$(ARCH)/*.o)
22LIB = $(ARCH)/libbsp.a
23
24include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
25include $(top_srcdir)/../../../../../../automake/lib.am
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31$(LIB): $(OBJS)
32        $(make-library)
33
34$(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a: $(LIB)
35        $(INSTALL_DATA) $< $@
36
37TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libbsp$(LIB_VARIANT).a
38
39all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
40
41.PRECIOUS: $(LIB)
42
43include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.