Files
rtems/tools/build/configure.in
Joel Sherrill f724a870c6 Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:
This patch addresses a few configuration issues and removes some
    duplicate configuration files.

    Background:
    * some files used in AC_INIT were not unique enough and can lead to
      problems if a user plays with configure scripts.
    * the Makefile templates are independent of the target/cpu and bsp, so
      the bsp dependent versions (c/src/make/Templates) are removed.

    To apply:
        patch -p1 < rtems-rc-19990820-3.diff
        rm -f c/src/make/Templates
        ./autogen

    ATTENTION: This patch removes several files and one directory :)
1999-08-30 16:25:54 +00:00

29 lines
364 B
Plaintext

#
# $Id$
#
AC_PREREQ(2.13)
AC_INIT(install-if-change.in)
AC_CONFIG_AUX_DIR(../..)
RTEMS_TOP(../..)
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(rtems-build-tools,$RTEMS_VERSION,no)
AM_MAINTAINER_MODE
AC_EXEEXT
AC_PROG_CC
AC_CHECK_FUNCS(strerror strtol)
RTEMS_PATH_KSH
AM_CONFIG_HEADER(config.h)
AC_OUTPUT(
Makefile
install-if-change
lock-directory
unlock-directory
)