summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-02 17:45:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-02 17:45:14 +0000
commit432834560293094335873531fef84a4a98606180 (patch)
tree8b4084cfe8c4a0c1dc49a77b8553ca8644fadec5 /cpukit/score/cpu
parentJennifer added initial test code. Conditional'ed out until she has (diff)
downloadrtems-432834560293094335873531fef84a4a98606180.tar.bz2
Patch rtems-rc-19991123-rc-2.diff from Ralf Corsepius
<corsepiu@faw.uni-ulm.de>: 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.
Diffstat (limited to 'cpukit/score/cpu')
-rw-r--r--cpukit/score/cpu/Makefile.am14
-rw-r--r--cpukit/score/cpu/powerpc/Makefile.am17
2 files changed, 31 insertions, 0 deletions
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