From 432834560293094335873531fef84a4a98606180 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 2 Dec 1999 17:45:14 +0000 Subject: Patch rtems-rc-19991123-rc-2.diff from Ralf Corsepius : The patch below provides * automake support for score/cpu/powerpc * The hack to propagate values from *.cfg to automake configuration * A fix for librdbg/powerpc/mcp750/Makefile.am (Was completely corrupted before) * Fixes some files which apparently where missing in rtems-rc-19991123-rc-2.diff * some minor configuration related patches To apply: rm -rf ./c/src/exec/score/cpu/powerpc/wrap patch -p1 < rtems-rc-19991123-rc-3.diff Attention: c/src/exec/score/cpu/[configure.in|aclocal.m4|configure] should be removed after applying the patch. --- cpukit/score/cpu/Makefile.am | 14 ++++++++++++++ cpukit/score/cpu/powerpc/Makefile.am | 17 +++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 cpukit/score/cpu/Makefile.am create mode 100644 cpukit/score/cpu/powerpc/Makefile.am (limited to 'cpukit/score') diff --git a/cpukit/score/cpu/Makefile.am b/cpukit/score/cpu/Makefile.am new file mode 100644 index 0000000000..b619a70f04 --- /dev/null +++ b/cpukit/score/cpu/Makefile.am @@ -0,0 +1,14 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 + +SUBDIRS = $(RTEMS_CPU) + +## FIXME: this does not work +## DIST_SUBDIRS = \ +## a29k hppa1.1 i386 i960 m68k mips64orion no_cpu powerpc sh sparc unix + +include $(top_srcdir)/../../../automake/subdirs.am +include $(top_srcdir)/../../../automake/local.am diff --git a/cpukit/score/cpu/powerpc/Makefile.am b/cpukit/score/cpu/powerpc/Makefile.am new file mode 100644 index 0000000000..aeff71be34 --- /dev/null +++ b/cpukit/score/cpu/powerpc/Makefile.am @@ -0,0 +1,17 @@ +## +## $Id$ +## + +AUTOMAKE_OPTIONS = foreign 1.4 +ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal + +if MPC750 +CPUDIR = mpc750 +else +CPUDIR = other_cpu +endif + +SUBDIRS = shared $(CPUDIR) + +include $(top_srcdir)/../../../../../../automake/subdirs.am +include $(top_srcdir)/../../../../../../automake/local.am -- cgit v1.2.3