Changeset 66387986 in rtems
- Timestamp:
- 10/11/01 19:07:37 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- df25c998
- Parents:
- 96462044
- Files:
-
- 16 added
- 70 edited
- 19 moved
Legend:
- Unmodified
- Added
- Removed
-
.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-10-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-05-25 Joel Sherrill <joel@OARcorp.com> 2 8 -
c/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(src) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([src]) 7 8 RTEMS_TOP(..) 8 9 AC_CONFIG_AUX_DIR(..) … … 13 14 AM_MAINTAINER_MODE 14 15 15 dnlThese options are used within this file.16 ## These options are used within this file. 16 17 RTEMS_ENABLE_BARE 17 18 RTEMS_ENABLE_RTEMSBSP(rtems_bsp) … … 94 95 95 96 # Explicitly list all Makefiles here 96 AC_ OUTPUT(97 Makefile 98 ) 97 AC_CONFIG_FILES([Makefile 98 ]) 99 AC_OUTPUT 99 100 100 101 echo -
c/make/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/make/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-02-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/make/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 dnl 6 dnlThis script configures the configuration files below c/make/7 dnl 5 ## 6 ## This script configures the configuration files below c/make/ 7 ## 8 8 9 AC_PREREQ(2.13) 10 AC_INIT(target.cfg.in) 9 AC_PREREQ(2.52) 10 AC_INIT 11 AC_CONFIG_SRCDIR([target.cfg.in]) 11 12 RTEMS_TOP(../..) 12 13 AC_CONFIG_AUX_DIR(../..) … … 33 34 RTEMS_PROG_CC_FOR_TARGET 34 35 35 dnlcheck for g++36 ## check for g++ 36 37 if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then 37 38 RTEMS_PROG_CXX_FOR_TARGET … … 47 48 48 49 # Explicitly list all Makefiles here 49 AC_OUTPUT( 50 Makefile 50 AC_CONFIG_FILES([Makefile 51 51 target.cfg 52 ) 52 ]) 53 AC_OUTPUT -
c/src/exec/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(score) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([score]) 7 8 RTEMS_TOP(../../..) 8 9 AC_CONFIG_AUX_DIR(../../..) … … 74 75 75 76 # Explicitly list all Makefiles here 76 AC_OUTPUT( 77 Makefile 77 AC_CONFIG_FILES([Makefile 78 78 rtems/Makefile 79 79 rtems/src/Makefile … … 114 114 wrapup/itron/Makefile 115 115 wrapup/posix/Makefile 116 ) 116 ]) 117 AC_OUTPUT -
c/src/exec/itron/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/itron/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/itron/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(include/itronsys) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([include/itronsys]) 7 8 RTEMS_TOP(../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../..) … … 46 47 ## Should probably use AM_CONDITIONALs to disable them in future 47 48 # Explicitly list all Makefiles here 48 AC_OUTPUT( 49 Makefile 49 AC_CONFIG_FILES([Makefile 50 50 src/Makefile 51 51 include/Makefile … … 59 59 macros/rtems/Makefile 60 60 macros/rtems/itron/Makefile 61 ) 61 ]) 62 AC_OUTPUT 62 63 -
c/src/exec/posix/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/posix/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-28 Joel Sherrill <joel@OARcorp.com> 2 8 -
c/src/exec/posix/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(optman) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([optman]) 7 8 RTEMS_TOP(../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../..) … … 50 51 51 52 # Explicitly list all Makefiles here 52 AC_OUTPUT( 53 Makefile 53 AC_CONFIG_FILES([Makefile 54 54 src/Makefile 55 55 include/Makefile … … 64 64 macros/rtems/Makefile 65 65 macros/rtems/posix/Makefile 66 ) 66 ]) 67 AC_OUTPUT -
c/src/exec/score/cpu/a29k/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/a29k/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/a29k/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT -
c/src/exec/score/cpu/arm/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/arm/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/arm/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 29 30 30 31 # Explicitly list all Makefiles here 31 AC_OUTPUT( 32 Makefile 32 AC_CONFIG_FILES([Makefile 33 33 rtems/Makefile 34 rtems/score/Makefile) 34 rtems/score/Makefile]) 35 AC_OUTPUT -
c/src/exec/score/cpu/c4x/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/c4x/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/c4x/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 29 30 30 31 # Explicitly list all Makefiles here 31 AC_OUTPUT( 32 Makefile 32 AC_CONFIG_FILES([Makefile 33 33 rtems/Makefile 34 rtems/score/Makefile) 34 rtems/score/Makefile]) 35 AC_OUTPUT -
c/src/exec/score/cpu/h8300/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/h8300/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/hppa1.1/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/hppa1.1/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/hppa1.1/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT -
c/src/exec/score/cpu/i386/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/i386/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/i386/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT -
c/src/exec/score/cpu/i960/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/i960/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/m68k/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/m68k/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/mips/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/mips/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/mips/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 29 30 30 31 # Explicitly list all Makefiles here 31 AC_OUTPUT( 32 Makefile 32 AC_CONFIG_FILES([Makefile 33 33 rtems/Makefile 34 rtems/score/Makefile) 34 rtems/score/Makefile]) 35 AC_OUTPUT -
c/src/exec/score/cpu/mips64orion/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/mips64orion/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/no_cpu/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/no_cpu/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/no_cpu/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.c) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.c]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT -
c/src/exec/score/cpu/or16/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/or16/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/or32/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
c/src/exec/score/cpu/or32/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 5 AC_PREREQ(2.52) … … 20 20 AM_MAINTAINER_MODE 21 21 22 dnlThese option are only in here to let --help report all supported23 dnloptions.22 ## These option are only in here to let --help report all supported 23 ## options. 24 24 RTEMS_ENABLE_MULTIPROCESSING 25 25 RTEMS_ENABLE_POSIX -
cpukit/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/itron/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/itron/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/posix/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/posix/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-28 Joel Sherrill <joel@OARcorp.com> 2 8 -
cpukit/score/cpu/a29k/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/a29k/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/arm/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/arm/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/c4x/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/c4x/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/h8300/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/h8300/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/h8300/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT -
cpukit/score/cpu/hppa1.1/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/hppa1.1/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/i386/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/i386/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/i960/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/i960/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/i960/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT -
cpukit/score/cpu/m68k/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/m68k/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/m68k/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT -
cpukit/score/cpu/mips/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/mips/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/mips64orion/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/mips64orion/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/mips64orion/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.S) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.S]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT -
cpukit/score/cpu/no_cpu/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/no_cpu/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/or16/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/or16/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/or16/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.c) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.c]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT -
cpukit/score/cpu/or32/.cvsignore
r96462044 r66387986 2 2 Makefile.in 3 3 aclocal.m4 4 autom4te.cache 4 5 config.cache 5 6 config.guess -
cpukit/score/cpu/or32/ChangeLog
r96462044 r66387986 1 2001-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 1 7 2001-09-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/or32/configure.ac
r96462044 r66387986 1 dnlProcess 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$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(cpu_asm.c) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([cpu_asm.c]) 7 8 RTEMS_TOP(../../../../../..) 8 9 AC_CONFIG_AUX_DIR(../../../../../..) … … 26 27 27 28 # Explicitly list all Makefiles here 28 AC_OUTPUT( 29 Makefile 29 AC_CONFIG_FILES([Makefile 30 30 rtems/Makefile 31 rtems/score/Makefile) 31 rtems/score/Makefile]) 32 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.