Changeset 66387986 in rtems


Ignore:
Timestamp:
10/11/01 19:07:37 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
df25c998
Parents:
96462044
Message:

2001-10-11 Ralf Corsepius <corsepiu@…>

  • .cvsignore: Add autom4te.cache for autoconf > 2.52.
  • configure.in: Remove.
  • configure.ac: New file, generated from configure.in by autoupdate.
Files:
16 added
70 edited
19 moved

Legend:

Unmodified
Added
Removed
  • .cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-10-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-05-25      Joel Sherrill <joel@OARcorp.com>
    28
  • c/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(src)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([src])
    78RTEMS_TOP(..)
    89AC_CONFIG_AUX_DIR(..)
     
    1314AM_MAINTAINER_MODE
    1415
    15 dnl These options are used within this file.
     16## These options are used within this file.
    1617RTEMS_ENABLE_BARE
    1718RTEMS_ENABLE_RTEMSBSP(rtems_bsp)
     
    9495
    9596# Explicitly list all Makefiles here
    96 AC_OUTPUT(
    97 Makefile
    98 )
     97AC_CONFIG_FILES([Makefile
     98])
     99AC_OUTPUT
    99100
    100101echo
  • c/make/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/make/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/make/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 dnl
    6 dnl This script configures the configuration files below c/make/
    7 dnl
     5##
     6## This script configures the configuration files below c/make/
     7##
    88
    9 AC_PREREQ(2.13)
    10 AC_INIT(target.cfg.in)
     9AC_PREREQ(2.52)
     10AC_INIT
     11AC_CONFIG_SRCDIR([target.cfg.in])
    1112RTEMS_TOP(../..)
    1213AC_CONFIG_AUX_DIR(../..)
     
    3334RTEMS_PROG_CC_FOR_TARGET
    3435
    35 dnl check for g++
     36## check for g++
    3637if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
    3738  RTEMS_PROG_CXX_FOR_TARGET
     
    4748
    4849# Explicitly list all Makefiles here
    49 AC_OUTPUT(
    50 Makefile
     50AC_CONFIG_FILES([Makefile
    5151target.cfg
    52 )
     52])
     53AC_OUTPUT
  • c/src/exec/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(score)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([score])
    78RTEMS_TOP(../../..)
    89AC_CONFIG_AUX_DIR(../../..)
     
    7475
    7576# Explicitly list all Makefiles here
    76 AC_OUTPUT(
    77 Makefile
     77AC_CONFIG_FILES([Makefile
    7878rtems/Makefile
    7979rtems/src/Makefile
     
    114114wrapup/itron/Makefile
    115115wrapup/posix/Makefile
    116 )
     116])
     117AC_OUTPUT
  • c/src/exec/itron/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/itron/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/itron/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(include/itronsys)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([include/itronsys])
    78RTEMS_TOP(../../../..)
    89AC_CONFIG_AUX_DIR(../../../..)
     
    4647## Should probably use AM_CONDITIONALs to disable them in future
    4748# Explicitly list all Makefiles here
    48 AC_OUTPUT(
    49 Makefile
     49AC_CONFIG_FILES([Makefile
    5050src/Makefile
    5151include/Makefile
     
    5959macros/rtems/Makefile
    6060macros/rtems/itron/Makefile
    61 )
     61])
     62AC_OUTPUT
    6263
  • c/src/exec/posix/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/posix/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-28      Joel Sherrill <joel@OARcorp.com>
    28
  • c/src/exec/posix/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(optman)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([optman])
    78RTEMS_TOP(../../../..)
    89AC_CONFIG_AUX_DIR(../../../..)
     
    5051
    5152# Explicitly list all Makefiles here
    52 AC_OUTPUT(
    53 Makefile
     53AC_CONFIG_FILES([Makefile
    5454src/Makefile
    5555include/Makefile
     
    6464macros/rtems/Makefile
    6565macros/rtems/posix/Makefile
    66 )
     66])
     67AC_OUTPUT
  • c/src/exec/score/cpu/a29k/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/a29k/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/a29k/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
  • c/src/exec/score/cpu/arm/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/arm/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/arm/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2930
    3031# Explicitly list all Makefiles here
    31 AC_OUTPUT(
    32 Makefile
     32AC_CONFIG_FILES([Makefile
    3333rtems/Makefile
    34 rtems/score/Makefile)
     34rtems/score/Makefile])
     35AC_OUTPUT
  • c/src/exec/score/cpu/c4x/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/c4x/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/c4x/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2930
    3031# Explicitly list all Makefiles here
    31 AC_OUTPUT(
    32 Makefile
     32AC_CONFIG_FILES([Makefile
    3333rtems/Makefile
    34 rtems/score/Makefile)
     34rtems/score/Makefile])
     35AC_OUTPUT
  • c/src/exec/score/cpu/h8300/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/h8300/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/hppa1.1/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/hppa1.1/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/hppa1.1/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
  • c/src/exec/score/cpu/i386/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/i386/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/i386/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
  • c/src/exec/score/cpu/i960/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/i960/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/m68k/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/m68k/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/mips/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/mips/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/mips/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2930
    3031# Explicitly list all Makefiles here
    31 AC_OUTPUT(
    32 Makefile
     32AC_CONFIG_FILES([Makefile
    3333rtems/Makefile
    34 rtems/score/Makefile)
     34rtems/score/Makefile])
     35AC_OUTPUT
  • c/src/exec/score/cpu/mips64orion/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/mips64orion/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/no_cpu/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/no_cpu/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/no_cpu/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.c)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.c])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
  • c/src/exec/score/cpu/or16/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/or16/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/or32/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • c/src/exec/score/cpu/or32/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    55AC_PREREQ(2.52)
     
    2020AM_MAINTAINER_MODE
    2121
    22 dnl These option are only in here to let --help report all supported
    23 dnl options.
     22## These option are only in here to let --help report all supported
     23## options.
    2424RTEMS_ENABLE_MULTIPROCESSING
    2525RTEMS_ENABLE_POSIX
  • cpukit/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/itron/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/itron/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/posix/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/posix/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-28      Joel Sherrill <joel@OARcorp.com>
    28
  • cpukit/score/cpu/a29k/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/a29k/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/arm/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/arm/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/c4x/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/c4x/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/h8300/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/h8300/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/h8300/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
  • cpukit/score/cpu/hppa1.1/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/hppa1.1/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/i386/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/i386/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/i960/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/i960/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/i960/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
  • cpukit/score/cpu/m68k/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/m68k/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/m68k/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
  • cpukit/score/cpu/mips/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/mips/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/mips64orion/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/mips64orion/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/mips64orion/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.S)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.S])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
  • cpukit/score/cpu/no_cpu/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/no_cpu/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/or16/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/or16/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/or16/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.c)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.c])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
  • cpukit/score/cpu/or32/.cvsignore

    r96462044 r66387986  
    22Makefile.in
    33aclocal.m4
     4autom4te.cache
    45config.cache
    56config.guess
  • cpukit/score/cpu/or32/ChangeLog

    r96462044 r66387986  
     12001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
     4        * configure.in: Remove.
     5        * configure.ac: New file, generated from configure.in by autoupdate.
     6
    172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/or32/configure.ac

    r96462044 r66387986  
    1 dnl Process this file with autoconf to produce a configure script.
    2 dnl
    3 dnl $Id$
     1## Process this file with autoconf to produce a configure script.
     2##
     3## $Id$
    44
    5 AC_PREREQ(2.13)
    6 AC_INIT(cpu_asm.c)
     5AC_PREREQ(2.52)
     6AC_INIT
     7AC_CONFIG_SRCDIR([cpu_asm.c])
    78RTEMS_TOP(../../../../../..)
    89AC_CONFIG_AUX_DIR(../../../../../..)
     
    2627
    2728# Explicitly list all Makefiles here
    28 AC_OUTPUT(
    29 Makefile
     29AC_CONFIG_FILES([Makefile
    3030rtems/Makefile
    31 rtems/score/Makefile)
     31rtems/score/Makefile])
     32AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.