From 66387986497d71e9ff8bc71b91ba3e4f54c97264 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 11 Oct 2001 19:07:37 +0000 Subject: 2001-10-11 Ralf Corsepius * .cvsignore: Add autom4te.cache for autoconf > 2.52. * configure.in: Remove. * configure.ac: New file, generated from configure.in by autoupdate. --- cpukit/.cvsignore | 1 + cpukit/ChangeLog | 6 ++ cpukit/configure.ac | 117 ++++++++++++++++++++++++++++++ cpukit/itron/.cvsignore | 1 + cpukit/itron/ChangeLog | 6 ++ cpukit/itron/configure.ac | 63 ++++++++++++++++ cpukit/posix/.cvsignore | 1 + cpukit/posix/ChangeLog | 6 ++ cpukit/posix/configure.ac | 67 +++++++++++++++++ cpukit/score/cpu/a29k/.cvsignore | 1 + cpukit/score/cpu/a29k/ChangeLog | 6 ++ cpukit/score/cpu/a29k/configure.ac | 32 ++++++++ cpukit/score/cpu/arm/.cvsignore | 1 + cpukit/score/cpu/arm/ChangeLog | 6 ++ cpukit/score/cpu/arm/configure.ac | 35 +++++++++ cpukit/score/cpu/c4x/.cvsignore | 1 + cpukit/score/cpu/c4x/ChangeLog | 6 ++ cpukit/score/cpu/c4x/configure.ac | 35 +++++++++ cpukit/score/cpu/h8300/.cvsignore | 1 + cpukit/score/cpu/h8300/ChangeLog | 6 ++ cpukit/score/cpu/h8300/configure.ac | 32 ++++++++ cpukit/score/cpu/hppa1.1/.cvsignore | 1 + cpukit/score/cpu/hppa1.1/ChangeLog | 6 ++ cpukit/score/cpu/hppa1.1/configure.ac | 32 ++++++++ cpukit/score/cpu/i386/.cvsignore | 1 + cpukit/score/cpu/i386/ChangeLog | 6 ++ cpukit/score/cpu/i386/configure.ac | 32 ++++++++ cpukit/score/cpu/i960/.cvsignore | 1 + cpukit/score/cpu/i960/ChangeLog | 6 ++ cpukit/score/cpu/i960/configure.ac | 32 ++++++++ cpukit/score/cpu/m68k/.cvsignore | 1 + cpukit/score/cpu/m68k/ChangeLog | 6 ++ cpukit/score/cpu/m68k/configure.ac | 32 ++++++++ cpukit/score/cpu/mips/.cvsignore | 1 + cpukit/score/cpu/mips/ChangeLog | 6 ++ cpukit/score/cpu/mips/configure.ac | 35 +++++++++ cpukit/score/cpu/mips64orion/.cvsignore | 1 + cpukit/score/cpu/mips64orion/ChangeLog | 6 ++ cpukit/score/cpu/mips64orion/configure.ac | 32 ++++++++ cpukit/score/cpu/no_cpu/.cvsignore | 1 + cpukit/score/cpu/no_cpu/ChangeLog | 6 ++ cpukit/score/cpu/no_cpu/configure.ac | 32 ++++++++ cpukit/score/cpu/or16/.cvsignore | 1 + cpukit/score/cpu/or16/ChangeLog | 6 ++ cpukit/score/cpu/or16/configure.ac | 32 ++++++++ cpukit/score/cpu/or32/.cvsignore | 1 + cpukit/score/cpu/or32/ChangeLog | 6 ++ cpukit/score/cpu/or32/configure.ac | 32 ++++++++ 48 files changed, 784 insertions(+) create mode 100644 cpukit/configure.ac create mode 100644 cpukit/itron/configure.ac create mode 100644 cpukit/posix/configure.ac create mode 100644 cpukit/score/cpu/a29k/configure.ac create mode 100644 cpukit/score/cpu/arm/configure.ac create mode 100644 cpukit/score/cpu/c4x/configure.ac create mode 100644 cpukit/score/cpu/h8300/configure.ac create mode 100644 cpukit/score/cpu/hppa1.1/configure.ac create mode 100644 cpukit/score/cpu/i386/configure.ac create mode 100644 cpukit/score/cpu/i960/configure.ac create mode 100644 cpukit/score/cpu/m68k/configure.ac create mode 100644 cpukit/score/cpu/mips/configure.ac create mode 100644 cpukit/score/cpu/mips64orion/configure.ac create mode 100644 cpukit/score/cpu/no_cpu/configure.ac create mode 100644 cpukit/score/cpu/or16/configure.ac create mode 100644 cpukit/score/cpu/or32/configure.ac (limited to 'cpukit') diff --git a/cpukit/.cvsignore b/cpukit/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/.cvsignore +++ b/cpukit/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 3d0674b466..b2646d62d7 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-22 Ralf Corsepius * wrapup/rtems/Makefile.am: Fix comments to make automake-1.5 happy. diff --git a/cpukit/configure.ac b/cpukit/configure.ac new file mode 100644 index 0000000000..92969c9a83 --- /dev/null +++ b/cpukit/configure.ac @@ -0,0 +1,117 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([score]) +RTEMS_TOP(../../..) +AC_CONFIG_AUX_DIR(../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENABLE_MULTILIB +RTEMS_ENABLE_MULTIPROCESSING +RTEMS_ENABLE_POSIX +RTEMS_ENABLE_ITRON +RTEMS_ENABLE_INLINES +RTEMS_ENABLE_GCC28 +RTEMS_ENABLE_RTEMS_DEBUG + +RTEMS_ENV_RTEMSCPU +RTEMS_CHECK_RTEMS_DEBUG + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]) +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP) +RTEMS_CHECK_POSIX_API(RTEMS_BSP) +RTEMS_CHECK_ITRON_API(RTEMS_BSP) + +# If RTEMS macros are enabled, then use them. Otherwise, use inlines. +if test "$RTEMS_USE_MACROS" = "yes"; then + INLINEdir="macros" +else + INLINEdir="inline" +fi +AM_CONDITIONAL(INLINE,test "$INLINEdir" = "inline" ) +AM_CONDITIONAL(MACROS,test "$INLINEdir" = "macros" ) +AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes" ) + +AC_SUBST(RTEMS_VERSION) + +AM_CONDITIONAL(HAS_POSIX,test "$HAS_POSIX_API" = "yes") +AM_CONDITIONAL(HAS_ITRON,test "$HAS_ITRON_API" = "yes") + +if test "$HAS_POSIX_API" = "yes"; then + cfg_subdirs="posix" +fi +if test "$HAS_ITRON_API" = "yes"; then + cfg_subdirs="$cfg_subdirs itron" +fi +AC_CONFIG_SUBDIRS($cfg_subdirs) +AC_CONFIG_SUBDIRS(score/cpu/$RTEMS_CPU) + +RTEMS_DEFINE_POSIX_API +RTEMS_DEFINE_ITRON_API +RTEMS_DEFINE_MULTIPROCESSING + +# HACK: We should use a feature-based configuration. +if test x"${RTEMS_CPU}" = x"unix"; then +AC_DEFINE_UNQUOTED(RTEMS_UNIX,1,[to indicate RTEMS unix]) +fi + +AM_CONFIG_HEADER(score/include/rtems/score/cpuopts-tmp.h) + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/src/Makefile +rtems/include/Makefile +rtems/include/rtems/Makefile +rtems/include/rtems/rtems/Makefile +rtems/optman/Makefile +rtems/inline/Makefile +rtems/inline/rtems/Makefile +rtems/inline/rtems/rtems/Makefile +rtems/macros/Makefile +rtems/macros/rtems/Makefile +rtems/macros/rtems/rtems/Makefile +sapi/Makefile +sapi/src/Makefile +sapi/include/Makefile +sapi/include/rtems/Makefile +sapi/include/rtems/sptables.h +sapi/inline/Makefile +sapi/inline/rtems/Makefile +sapi/macros/Makefile +sapi/macros/rtems/Makefile +sapi/optman/Makefile +score/Makefile +score/cpu/Makefile +score/include/Makefile +score/include/rtems/Makefile +score/include/rtems/score/Makefile +score/inline/Makefile +score/inline/rtems/Makefile +score/inline/rtems/score/Makefile +score/macros/Makefile +score/macros/rtems/Makefile +score/macros/rtems/score/Makefile +score/src/Makefile +wrapup/Makefile +wrapup/rtems/Makefile +wrapup/itron/Makefile +wrapup/posix/Makefile +]) +AC_OUTPUT diff --git a/cpukit/itron/.cvsignore b/cpukit/itron/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/itron/.cvsignore +++ b/cpukit/itron/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/itron/ChangeLog b/cpukit/itron/ChangeLog index cfe812b1d2..05f295261c 100644 --- a/cpukit/itron/ChangeLog +++ b/cpukit/itron/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * include/itronsys/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/itron/configure.ac b/cpukit/itron/configure.ac new file mode 100644 index 0000000000..9d28b050b1 --- /dev/null +++ b/cpukit/itron/configure.ac @@ -0,0 +1,63 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([include/itronsys]) +RTEMS_TOP(../../../..) +AC_CONFIG_AUX_DIR(../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-itron,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENABLE_ITRON +RTEMS_ENABLE_INLINES + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]) +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_ITRON_API(RTEMS_BSP) + +# If RTEMS macros are enabled, then use them. Otherwise, use inlines. +if test "$RTEMS_USE_MACROS" = "yes"; then + INLINEdir="macros" +else + INLINEdir="inline" +fi +AM_CONDITIONAL(INLINE,test "$INLINEdir" = "inline" ) +AM_CONDITIONAL(MACROS,test "$INLINEdir" = "macros" ) + +## Needed when using automake for libs/rels +RTEMS_CHECK_NEWLIB + +AM_CONFIG_HEADER(src/config.h) + +## +## FIXME: We configure and build the macros subdirectory, too. +## Should probably use AM_CONDITIONALs to disable them in future +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +src/Makefile +include/Makefile +include/itronsys/Makefile +include/rtems/Makefile +include/rtems/itron/Makefile +inline/Makefile +inline/rtems/Makefile +inline/rtems/itron/Makefile +macros/Makefile +macros/rtems/Makefile +macros/rtems/itron/Makefile +]) +AC_OUTPUT + diff --git a/cpukit/posix/.cvsignore b/cpukit/posix/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/posix/.cvsignore +++ b/cpukit/posix/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/posix/ChangeLog b/cpukit/posix/ChangeLog index d8c65003ed..5c5e9e2424 100644 --- a/cpukit/posix/ChangeLog +++ b/cpukit/posix/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-28 Joel Sherrill * src/mqueueopen.c, src/semopen.c: Clarify type on va_arg. diff --git a/cpukit/posix/configure.ac b/cpukit/posix/configure.ac new file mode 100644 index 0000000000..3aa1f2e39f --- /dev/null +++ b/cpukit/posix/configure.ac @@ -0,0 +1,67 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([optman]) +RTEMS_TOP(../../../..) +AC_CONFIG_AUX_DIR(../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-posix,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENABLE_POSIX +RTEMS_ENABLE_INLINES + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]) +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP) +RTEMS_CHECK_POSIX_API(RTEMS_BSP) + +# If RTEMS macros are enabled, then use them. Otherwise, use inlines. +if test "$RTEMS_USE_MACROS" = "yes"; then + INLINEdir="macros" +else + INLINEdir="inline" +fi +AM_CONDITIONAL(INLINE,test "$INLINEdir" = "inline" ) +AM_CONDITIONAL(MACROS,test "$INLINEdir" = "macros" ) +AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes" ) + +## Needed when using automake for libs/rels +RTEMS_CHECK_NEWLIB + +## Refuse to build if bsp does not support libposix +if test "$HAS_POSIX_API" != "yes"; then +AC_MSG_ERROR([BSP $RTEMS_BSP does not support libposix]) +fi + +AM_CONFIG_HEADER(src/config.h) + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +src/Makefile +include/Makefile +include/sys/Makefile +include/rtems/Makefile +include/rtems/posix/Makefile +optman/Makefile +inline/Makefile +inline/rtems/Makefile +inline/rtems/posix/Makefile +macros/Makefile +macros/rtems/Makefile +macros/rtems/posix/Makefile +]) +AC_OUTPUT diff --git a/cpukit/score/cpu/a29k/.cvsignore b/cpukit/score/cpu/a29k/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/a29k/.cvsignore +++ b/cpukit/score/cpu/a29k/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/a29k/ChangeLog b/cpukit/score/cpu/a29k/ChangeLog index a491685c5f..7afa8b0ba4 100644 --- a/cpukit/score/cpu/a29k/ChangeLog +++ b/cpukit/score/cpu/a29k/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/a29k/configure.ac b/cpukit/score/cpu/a29k/configure.ac new file mode 100644 index 0000000000..af3174a5df --- /dev/null +++ b/cpukit/score/cpu/a29k/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-a29k,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/arm/.cvsignore b/cpukit/score/cpu/arm/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/arm/.cvsignore +++ b/cpukit/score/cpu/arm/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/arm/ChangeLog b/cpukit/score/cpu/arm/ChangeLog index 83b53c1a79..9f5d00fa90 100644 --- a/cpukit/score/cpu/arm/ChangeLog +++ b/cpukit/score/cpu/arm/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/arm/configure.ac b/cpukit/score/cpu/arm/configure.ac new file mode 100644 index 0000000000..17fc271325 --- /dev/null +++ b/cpukit/score/cpu/arm/configure.ac @@ -0,0 +1,35 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-arm,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSBSP + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Check if there is custom/*.cfg for this BSP +RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP) + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/c4x/.cvsignore b/cpukit/score/cpu/c4x/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/c4x/.cvsignore +++ b/cpukit/score/cpu/c4x/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/c4x/ChangeLog b/cpukit/score/cpu/c4x/ChangeLog index 4f3ac9d11b..1ebb66b30c 100644 --- a/cpukit/score/cpu/c4x/ChangeLog +++ b/cpukit/score/cpu/c4x/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/c4x/configure.ac b/cpukit/score/cpu/c4x/configure.ac new file mode 100644 index 0000000000..19044cdc72 --- /dev/null +++ b/cpukit/score/cpu/c4x/configure.ac @@ -0,0 +1,35 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-c4x,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSBSP + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Check if there is custom/*.cfg for this BSP +RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP) + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/h8300/.cvsignore b/cpukit/score/cpu/h8300/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/h8300/.cvsignore +++ b/cpukit/score/cpu/h8300/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/h8300/ChangeLog b/cpukit/score/cpu/h8300/ChangeLog index f115760ab1..4c876525b2 100644 --- a/cpukit/score/cpu/h8300/ChangeLog +++ b/cpukit/score/cpu/h8300/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/h8300/configure.ac b/cpukit/score/cpu/h8300/configure.ac new file mode 100644 index 0000000000..883a43a96a --- /dev/null +++ b/cpukit/score/cpu/h8300/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-h8300,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/hppa1.1/.cvsignore b/cpukit/score/cpu/hppa1.1/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/hppa1.1/.cvsignore +++ b/cpukit/score/cpu/hppa1.1/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/hppa1.1/ChangeLog b/cpukit/score/cpu/hppa1.1/ChangeLog index 07641eba51..20bd9f8ca2 100644 --- a/cpukit/score/cpu/hppa1.1/ChangeLog +++ b/cpukit/score/cpu/hppa1.1/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'CLEANFILES ='. diff --git a/cpukit/score/cpu/hppa1.1/configure.ac b/cpukit/score/cpu/hppa1.1/configure.ac new file mode 100644 index 0000000000..45f67ae807 --- /dev/null +++ b/cpukit/score/cpu/hppa1.1/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-hppa1.1,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/i386/.cvsignore b/cpukit/score/cpu/i386/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/i386/.cvsignore +++ b/cpukit/score/cpu/i386/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/i386/ChangeLog b/cpukit/score/cpu/i386/ChangeLog index 29e5ffc235..60aff5bd65 100644 --- a/cpukit/score/cpu/i386/ChangeLog +++ b/cpukit/score/cpu/i386/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/i386/configure.ac b/cpukit/score/cpu/i386/configure.ac new file mode 100644 index 0000000000..3209c8048e --- /dev/null +++ b/cpukit/score/cpu/i386/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-i386,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/i960/.cvsignore b/cpukit/score/cpu/i960/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/i960/.cvsignore +++ b/cpukit/score/cpu/i960/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/i960/ChangeLog b/cpukit/score/cpu/i960/ChangeLog index aa5f9e7bee..39b01acded 100644 --- a/cpukit/score/cpu/i960/ChangeLog +++ b/cpukit/score/cpu/i960/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/i960/configure.ac b/cpukit/score/cpu/i960/configure.ac new file mode 100644 index 0000000000..bd6b30e516 --- /dev/null +++ b/cpukit/score/cpu/i960/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-i960,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/m68k/.cvsignore b/cpukit/score/cpu/m68k/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/m68k/.cvsignore +++ b/cpukit/score/cpu/m68k/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/m68k/ChangeLog b/cpukit/score/cpu/m68k/ChangeLog index 541e71f64b..95d6bc39f4 100644 --- a/cpukit/score/cpu/m68k/ChangeLog +++ b/cpukit/score/cpu/m68k/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/m68k/configure.ac b/cpukit/score/cpu/m68k/configure.ac new file mode 100644 index 0000000000..599fac5de6 --- /dev/null +++ b/cpukit/score/cpu/m68k/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-m68k,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/mips/.cvsignore b/cpukit/score/cpu/mips/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/mips/.cvsignore +++ b/cpukit/score/cpu/mips/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/mips/ChangeLog b/cpukit/score/cpu/mips/ChangeLog index bd76b40e0c..5b3439971a 100644 --- a/cpukit/score/cpu/mips/ChangeLog +++ b/cpukit/score/cpu/mips/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/mips/configure.ac b/cpukit/score/cpu/mips/configure.ac new file mode 100644 index 0000000000..ff38c83ee9 --- /dev/null +++ b/cpukit/score/cpu/mips/configure.ac @@ -0,0 +1,35 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-mips,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSBSP + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Check if there is custom/*.cfg for this BSP +RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP) + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/mips64orion/.cvsignore b/cpukit/score/cpu/mips64orion/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/mips64orion/.cvsignore +++ b/cpukit/score/cpu/mips64orion/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/mips64orion/ChangeLog b/cpukit/score/cpu/mips64orion/ChangeLog index 156781e92a..ac1d673257 100644 --- a/cpukit/score/cpu/mips64orion/ChangeLog +++ b/cpukit/score/cpu/mips64orion/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/mips64orion/configure.ac b/cpukit/score/cpu/mips64orion/configure.ac new file mode 100644 index 0000000000..2eadc7090e --- /dev/null +++ b/cpukit/score/cpu/mips64orion/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.S]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-mips64orion,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/no_cpu/.cvsignore b/cpukit/score/cpu/no_cpu/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/no_cpu/.cvsignore +++ b/cpukit/score/cpu/no_cpu/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/no_cpu/ChangeLog b/cpukit/score/cpu/no_cpu/ChangeLog index 86b7519ff6..8a1681ac54 100644 --- a/cpukit/score/cpu/no_cpu/ChangeLog +++ b/cpukit/score/cpu/no_cpu/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/no_cpu/configure.ac b/cpukit/score/cpu/no_cpu/configure.ac new file mode 100644 index 0000000000..049222d9ef --- /dev/null +++ b/cpukit/score/cpu/no_cpu/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.c]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-no_cpu,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/or16/.cvsignore b/cpukit/score/cpu/or16/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/or16/.cvsignore +++ b/cpukit/score/cpu/or16/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/or16/ChangeLog b/cpukit/score/cpu/or16/ChangeLog index 77992c6b2c..a0d9168624 100644 --- a/cpukit/score/cpu/or16/ChangeLog +++ b/cpukit/score/cpu/or16/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/or16/configure.ac b/cpukit/score/cpu/or16/configure.ac new file mode 100644 index 0000000000..2d2a434bc1 --- /dev/null +++ b/cpukit/score/cpu/or16/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.c]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-or16,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT diff --git a/cpukit/score/cpu/or32/.cvsignore b/cpukit/score/cpu/or32/.cvsignore index 525275c115..d29e5050f5 100644 --- a/cpukit/score/cpu/or32/.cvsignore +++ b/cpukit/score/cpu/or32/.cvsignore @@ -1,6 +1,7 @@ Makefile Makefile.in aclocal.m4 +autom4te.cache config.cache config.guess config.log diff --git a/cpukit/score/cpu/or32/ChangeLog b/cpukit/score/cpu/or32/ChangeLog index 9da2b360df..387e7cc5dc 100644 --- a/cpukit/score/cpu/or32/ChangeLog +++ b/cpukit/score/cpu/or32/ChangeLog @@ -1,3 +1,9 @@ +2001-10-11 Ralf Corsepius + + * .cvsignore: Add autom4te.cache for autoconf > 2.52. + * configure.in: Remove. + * configure.ac: New file, generated from configure.in by autoupdate. + 2001-09-23 Ralf Corsepius * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/score/cpu/or32/configure.ac b/cpukit/score/cpu/or32/configure.ac new file mode 100644 index 0000000000..a16095b01d --- /dev/null +++ b/cpukit/score/cpu/or32/configure.ac @@ -0,0 +1,32 @@ +## Process this file with autoconf to produce a configure script. +## +## $Id$ + +AC_PREREQ(2.52) +AC_INIT +AC_CONFIG_SRCDIR([cpu_asm.c]) +RTEMS_TOP(../../../../../..) +AC_CONFIG_AUX_DIR(../../../../../..) + +RTEMS_CANONICAL_TARGET_CPU + +AM_INIT_AUTOMAKE(rtems-c-src-exec-score-cpu-or32,$RTEMS_VERSION,no) +AM_MAINTAINER_MODE + +RTEMS_ENV_RTEMSCPU + +RTEMS_CHECK_CPU +RTEMS_CANONICAL_HOST + +RTEMS_PROJECT_ROOT + +RTEMS_PROG_CC_FOR_TARGET +RTEMS_CANONICALIZE_TOOLS + +RTEMS_CHECK_NEWLIB + +# Explicitly list all Makefiles here +AC_CONFIG_FILES([Makefile +rtems/Makefile +rtems/score/Makefile]) +AC_OUTPUT -- cgit v1.2.3