From 8cdb582b49c1528216cfd316183536735474c899 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 12 Apr 1999 15:41:33 +0000 Subject: Patch from Ralf Corsepius : 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 --- tools/update/configure.in | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tools/update/configure.in (limited to 'tools/update/configure.in') diff --git a/tools/update/configure.in b/tools/update/configure.in new file mode 100644 index 0000000000..b270d7fef2 --- /dev/null +++ b/tools/update/configure.in @@ -0,0 +1,22 @@ +# +# $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 +) -- cgit v1.2.3