source: rtems/c/src/lib/libcpu/powerpc/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: 995 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7GENERIC_FILES = shared
8
9# Use two variables so that I can make two ar command.
10# So far FAMILY_OBJS is empty and ar dislike it...
11CPU_SPECIFIC_OBJS = $(wildcard ../$(RTEMS_CPU_MODEL)/*/$(ARCH)/*.o)
12FAMILY_OBJS = \
13    $(wildcard ../shared/$(ARCH)/*.o ../shared/*/$(ARCH)/*.o \
14         ../old_exception_processing/*/$(ARCH)/*.o \
15         ../new_exception_processing/*/$(ARCH)/*.o \
16         ../mpc6xx/*/$(ARCH)/*.o)
17
18LIB = $(ARCH)/libcpu.a
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../../../automake/lib.am
22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
26
27libcpu_a_OBJECTS = $(CPU_SPECIFIC_OBJS) $(FAMILY_OBJS)
28
29$(LIB): $(libcpu_a_OBJECTS)
30#       ${make-library}
31
32#$(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a: $(LIB)
33#       $(INSTALL_DATA) $< $@
34#
35#TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a
36
37all-local: ${ARCH} $(LIB) $(TMPINSTALL_FILES)
38
39include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.