source: rtems/c/src/lib/libcpu/powerpc/Makefile.am @ 623ffdb

4.104.114.84.95
Last change on this file since 623ffdb was 623ffdb, checked in by Joel Sherrill <joel.sherrill@…>, on 10/20/00 at 13:33:28

2000-10-20 Joel Sherrill <joel@…>

  • configure.in, Makefile.am: Explicitly specify whether an RTEMS_CPU_MODEL is using old or new exception processing. This is important because when building multilib, you do not know the RTEMS_CPU_MODEL. So everything built in a multilib'ed RTEMS must be independent of the exception model and allow for late binding to the exception code.
  • Property mode set to 100644
File size: 733 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
13## Use new or old exception processing based on the CPU
14if new_exception_processing
15EXCEPTION_SUBDIR = new_exception_processing
16endif
17
18if old_exception_processing
19EXCEPTION_SUBDIR = old_exception_processing
20endif
21
22if mpc505
23CPU_SUBDIR = mpc505
24endif
25if mpc6xx
26CPU_SUBDIR = mpc6xx
27endif
28if mpc8xx
29CPU_SUBDIR = mpc8xx
30endif
31if ppc403
32CPU_SUBDIR = ppc403
33endif
34
35SUBDIRS = $(SHARED_LIB) $(EXCEPTION_SUBDIR) $(CPU_SUBDIR) wrapup
36
37include $(top_srcdir)/../../../../../automake/subdirs.am
38include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.