summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-12-03 16:09:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-12-03 16:09:08 +0000
commit1a457f53e7d0e8243c73b3773ac8de83045ad856 (patch)
tree776006ea54116ad28ff0da7ec2d39125a1375a01
parent2001-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-1a457f53e7d0e8243c73b3773ac8de83045ad856.tar.bz2
2001-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-configure.m4: New file. * Makefile.am: Add aclocal/bsp-configure.m4.
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.am2
-rw-r--r--aclocal/bsp-configure.m417
3 files changed, 23 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c49fd19dab..740dc2f878 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * aclocal/bsp-configure.m4: New file.
+ * Makefile.am: Add aclocal/bsp-configure.m4.
+
2001-11-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Add automake/force-preinstall.am,
diff --git a/Makefile.am b/Makefile.am
index bc934b55f5..c879526516 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -31,7 +31,7 @@ ACLOCAL_FILES = aclocal/bsp-alias.m4 aclocal/canonical-host.m4 \
aclocal/project-root.m4 aclocal/rtems-debug.m4 \
aclocal/rtems-test-no-pause.m4 aclocal/rtems-top.m4 aclocal/sysv-ipc.m4 \
aclocal/target.m4 aclocal/tool-paths.m4 aclocal/bspopts.m4 \
- aclocal/ppc.m4
+ aclocal/ppc.m4 aclocal/bsp-configure.m4
noinst_SCRIPTS = bootstrap
diff --git a/aclocal/bsp-configure.m4 b/aclocal/bsp-configure.m4
new file mode 100644
index 0000000000..9959621799
--- /dev/null
+++ b/aclocal/bsp-configure.m4
@@ -0,0 +1,17 @@
+dnl $Id$
+
+dnl RTEMS_BSP_CONFIGURE
+dnl Commom 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_CHECK_BSP_CACHE(RTEMS_BSP)
+
+ RTEMS_CANONICAL_HOST
+ AM_CONFIG_HEADER([include/bspopts.h])
+ RTEMS_PROJECT_ROOT
+])