source: rtems/c/src/lib/libcpu/powerpc/wrapup/Makefile.am @ 5e77d129

4.104.114.84.95
Last change on this file since 5e77d129 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: 878 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 ../mpc6xx/*/$(ARCH)/*.o)
14
15LIB = $(ARCH)/libcpu.a
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../../../automake/lib.am
19
20#
21# (OPTIONAL) Add local stuff here using +=
22#
23
24libcpu_a_OBJECTS = $(CPU_SPECIFIC_OBJS) $(FAMILY_OBJS)
25
26$(LIB): $(libcpu_a_OBJECTS)
27#       ${make-library}
28
29#$(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a: $(LIB)
30#       $(INSTALL_DATA) $< $@
31#
32#TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a
33
34all-local: ${ARCH} $(LIB) $(TMPINSTALL_FILES)
35
36include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.