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

4.104.114.84.95
Last change on this file since d4aa480 was e9ae97fb, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/01 at 00:04:57

2001-11-08 Dennis Ehlin (ECS) <Dennis.Ehlin@…>

This modification is part of the submitted modifications necessary to
support the IBM PPC405 family. This submission was reviewed by
Thomas Doerfler <Thomas.Doerfler@…> who ensured it did
not negatively impact the ppc403 BSPs. The submission and tracking
process was captured as PR50.

  • ppc403/console/console405.c ppc403/tty_drv/.cvsignore, ppc403/tty_drv/Makefile.am, ppc403/tty_drv/tty_drv.c, ppc403/tty_drv/tty_drv.h: New files.
  • Makefile.am, README, configure.ac, old_exception_processing/cpu.c, old_exception_processing/cpu.h, ppc403/Makefile.am, ppc403/clock/clock.c, ppc403/console/Makefile.am, ppc403/console/console.c, ppc403/ictrl/ictrl.c, ppc403/ictrl/ictrl.h, ppc403/timer/timer.c: Modified.
  • Property mode set to 100644
File size: 855 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6ACLOCAL_AMFLAGS = -I ../../../../../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 mpc8260
32CPU_SUBDIR = mpc8260
33endif
34if ppc403
35CPU_SUBDIR = ppc403
36endif
37if ppc405
38## 403 and 405 chips use the same CPU sources...
39CPU_SUBDIR = ppc403
40endif
41
42SUBDIRS = $(SHARED_LIB) $(EXCEPTION_SUBDIR) $(CPU_SUBDIR) wrapup
43
44include $(top_srcdir)/../../../../../automake/subdirs.am
45include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.