forked from Imagelibrary/rtems
This patch addresses a few minor issues and contains a few (minor)
preparations for automake.
* configure.in: Fix for handing c/src/tests subdirectory handling (FIX)
* aclocal/rtems-top.m4:
+ Add TARGET_SUBDIR and --with-target-subdir (preparation of future
enhancements for cross-compiling)
+ Activate RTEMS_ROOT handling (automake preparation)
* automake/*.am: replace comments "#" with "##" so that comments won't
get included into Makefile.in's anymore
* c/update-tools/* automake support (NEW)
* ./autogen update/enhancement (cf. ./autogen for details)
After applying this patch please run:
./autogen
cvs add c/update-tools/configure.in
cvs add c/update-tools/Makefile.am
cvs add c/update-tools/aclocal.m4
23 lines
279 B
Plaintext
23 lines
279 B
Plaintext
#
|
|
# $Id$
|
|
#
|
|
|
|
AC_PREREQ(2.13)
|
|
AC_INIT(rtems-polish.sh)
|
|
AC_CONFIG_AUX_DIR(../..)
|
|
RTEMS_TOP(../..)
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
AM_INIT_AUTOMAKE(rtems-update-tools,$RTEMS_VERSION,no)
|
|
|
|
RTEMS_PATH_KSH
|
|
RTEMS_PATH_PERL
|
|
|
|
AM_CONDITIONAL(PERL,test -n "$PERL")
|
|
|
|
RTEMS_TOOLPATHS
|
|
AC_OUTPUT(
|
|
Makefile
|
|
)
|