source: rtems/c/src/lib/libbsp/powerpc/psim/wrapup/Makefile.am @ 586f260

4.104.114.84.95
Last change on this file since 586f260 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.0 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
8include $(top_srcdir)/../../../../../../automake/lib.am
9
10if HAS_MP
11GENERIC_MP_REL_PIECES = shmdr
12endif
13GENERIC_PIECES += $(GENERIC_MP_REL_PIECES)
14
15if HAS_MP
16BSP_MP_O_PIECES = shmsupp
17endif
18BSP_PIECES = startup clock console timer vectors $(BSP_MP_O_PIECES)
19
20
21# bummer; have to use $foreach since % pattern subst rules only replace 1x
22OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
23 $(wildcard ../../../../libcpu/powerpc/old_exception_processing/$(ARCH)/*.rel) \
24 $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
25LIB = $(ARCH)/libbsp.a
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.