source: rtems/c/src/lib/libcpu/powerpc/Makefile.am @ 80e5391

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