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

4.104.114.84.95
Last change on this file since 3e30f27 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: 647 bytes
RevLine 
[df49c60]1##
[400c552]2## $Id$
[df49c60]3##
[400c552]4
5AUTOMAKE_OPTIONS = foreign 1.4
6ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
7
[df49c60]8## Check configure.in for conditions to set the conditionals below
[400c552]9if shared
10SHARED_LIB = shared
[df49c60]11endif
[400c552]12
[80e5391]13if new_exception_processing
14EXCEPTION_SUBDIR = new_exception_processing
15else
16EXCEPTION_SUBDIR = old_exception_processing
17endif
18
[400c552]19if mpc505
20CPU_SUBDIR = mpc505
21endif
22if mpc6xx
23CPU_SUBDIR = mpc6xx
24endif
[8ef3818]25if mpc8xx
26CPU_SUBDIR = mpc8xx
[400c552]27endif
28if ppc403
29CPU_SUBDIR = ppc403
30endif
31
[80e5391]32SUBDIRS = $(SHARED_LIB) $(EXCEPTION_SUBDIR) $(CPU_SUBDIR) wrapup
[400c552]33
34include $(top_srcdir)/../../../../../automake/subdirs.am
35include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.