source: rtems/c/src/lib/libcpu/powerpc/wrapup/Makefile.am @ 3e30f27

4.104.114.84.95
Last change on this file since 3e30f27 was 3e30f27, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 16:00:37

2000-09-04 Ralf Corsepius <corsepiu@…>

  • mpc505/timer/Makefile.am, mpc505/vectors/Makefile.am, mpc6xx/clock/Makefile.am, mpc6xx/exceptions/Makefile.am, mpc6xx/mmu/Makefile.am, mpc6xx/timer/Makefile.am, mpc6xx/wrapup/Makefile.am, ppc403/clock/Makefile.am, ppc403/console/Makefile.am, ppc403/ictrl/Makefile.am, ppc403/timer/Makefile.am, ppc403/vectors/Makefile.am, shared/include/Makefile.am, shared/src/Makefile.am, wrapup/Makefile.am, mpc8xx/clock/Makefile.am, mpc8xx/console-generic/Makefile.am, mpc8xx/cpm/Makefile.am, mpc8xx/mmu/Makefile.am, mpc8xx/timer/Makefile.am, mpc8xx/vectors/Makefile.am, new_exception_processing/Makefile.am, old_exception_processing/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 1019 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 ../old_exception_processing/*/$(ARCH)/*.o ../new_exception_processing/*/$(ARCH)/*.o ../mpc6xx/*/$(ARCH)/*.o)
14
15LIB = $(ARCH)/libcpu.a
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../../../automake/compile.am
19include $(top_srcdir)/../../../../../automake/lib.am
20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
25libcpu_a_OBJECTS = $(CPU_SPECIFIC_OBJS) $(FAMILY_OBJS)
26
27$(LIB): $(libcpu_a_OBJECTS)
28#       ${make-library}
29
30#$(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a: $(LIB)
31#       $(INSTALL_DATA) $< $@
32#
33#TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a
34
35all-local: ${ARCH} $(LIB) $(TMPINSTALL_FILES)
36
37include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.