summaryrefslogtreecommitdiffstats
path: root/aclocal/bsp-configure.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-08-21 05:37:41 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-08-21 05:37:41 +0000
commit8ad16bac296cf446a9473041c9c6fd4a25fed038 (patch)
tree7ccb4b8454d2117fd0ff989213cbbcd58234c0fd /aclocal/bsp-configure.m4
parent2003-08-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8ad16bac296cf446a9473041c9c6fd4a25fed038.tar.bz2
2003-08-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-arg-enable.m4, aclocal/bsp-configure.m4, aclocal/bspopts.m4, aclocal/canonicalize-tools.m4, aclocal/check-bsp-cache.m4, aclocal/check-cxx.m4, aclocal/check-itron.m4, aclocal/check-multiprocessing.m4, aclocal/check-networking.m4, aclocal/check-newlib.m4, aclocal/check-posix.m4, aclocal/check-rdbg.m4, aclocal/check-tool.m4, aclocal/env-rtemsbsp.m4, aclocal/gcc-isystem.m4, aclocal/gcc-pipe.m4, aclocal/gcc-specs.m4, aclocal/i386-gas-code16.m4, aclocal/path-perl.m4, aclocal/ppc.m4, aclocal/prog-cc.m4, aclocal/prog-ccas.m4, aclocal/prog-cxx.m4, aclocal/prog-gnat.m4, aclocal/rtems-debug.m4, aclocal/rtems-flags.m4, aclocal/rtems-test-no-pause.m4, aclocal/target.m4: Remove (Unused). * automake/leaf.am, automake/force-preinstall.am: Remove (Unused). * Makefile.am: Reflect changes above.
Diffstat (limited to 'aclocal/bsp-configure.m4')
-rw-r--r--aclocal/bsp-configure.m435
1 files changed, 0 insertions, 35 deletions
diff --git a/aclocal/bsp-configure.m4 b/aclocal/bsp-configure.m4
deleted file mode 100644
index 5f123e5903..0000000000
--- a/aclocal/bsp-configure.m4
+++ /dev/null
@@ -1,35 +0,0 @@
-dnl $Id$
-
-dnl RTEMS_BSP_CONFIGURE
-dnl Common macro to be included by all bsp-configure.acs
-AC_DEFUN([RTEMS_BSP_CONFIGURE],
-[
- AC_PREREQ([2.52])
- AM_MAINTAINER_MODE
- RTEMS_ENV_RTEMSBSP
-
- RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
-
- RTEMS_CANONICAL_HOST
- AM_CONFIG_HEADER([include/bspopts.tmp:include/bspopts.h.in],[
-echo "/* BSP dependent options file */" >$tmp/config.h
-echo "/* automatically generated -- DO NOT EDIT!! */" >>$tmp/config.h
-echo >>$tmp/config.h
-echo "#ifndef __BSP_OPTIONS_h" >>$tmp/config.h
-echo "#define __BSP_OPTIONS_h" >>$tmp/config.h
-echo >>$tmp/config.h
-sed -e '/.*PACKAGE.*/d' include/bspopts.tmp >> $tmp/config.h
-echo >>$tmp/config.h
-echo "#endif" >>$tmp/config.h
- AS_IF([cmp -s include/bspopts.h $tmp/config.h 2>/dev/null],[
- AC_MSG_NOTICE([include/bspopts.h is unchanged])
- rm -f $tmp/config.h],[
- AC_MSG_NOTICE([creating include/bspopts.h])
- rm -f include/bspopts.h
- mv $tmp/config.h include/bspopts.h
- ])
-])
- RTEMS_PROJECT_ROOT
-
- RTEMS_CHECK_MULTIPROCESSING
-])