forked from Imagelibrary/rtems
the build-tools layout to simplify it. This script reorganizes and simpilfies the build-tools subdirectories. It moves all source-files and scripts to c/build-tools/. This will enable use to use this directory directly to refer to the build-tools instead of copying them around in a "preinstall" step in future. However, RTEMS's autoconf Makefile.ins and *.cfg files are not yet prepared to apply this approach and therefore require additional work.
29 lines
334 B
Plaintext
29 lines
334 B
Plaintext
#
|
|
# $Id$
|
|
#
|
|
|
|
AC_PREREQ(2.13)
|
|
AC_INIT(README)
|
|
AC_CONFIG_AUX_DIR(../..)
|
|
RTEMS_TOP(../..)
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
AM_INIT_AUTOMAKE(rtems-build-tools,$RTEMS_VERSION,no)
|
|
AC_EXEEXT
|
|
|
|
AC_PROG_CC
|
|
AC_CHECK_FUNCS(strerror)
|
|
|
|
RTEMS_PATH_KSH
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
AC_OUTPUT(
|
|
Makefile
|
|
install-if-change
|
|
lock-directory
|
|
rcs-clean
|
|
unlock-directory
|
|
)
|