source: rtems/c/src/aclocal/bsp-configure.m4 @ 73b5bd5d

4.104.114.84.95
Last change on this file since 73b5bd5d was 3025a4a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/12/04 at 16:56:47

2004-02-12 Ralf Corsepius <corsepiu@…>

  • aclocal/bspopts.m4: Use AS_HELP_STRING.
  • aclocal/bsp-configure.m4: Require autoconf-2.59. Use AC_CONFIG_HEADERS.
  • aclocal/check-custom-bsp.m4: Add bspkit-support.
  • aclocal/enable-rtemsbsp.m4: Use AS_HELP_STRING.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1dnl $Id$
2
3dnl RTEMS_BSP_CONFIGURE
4dnl Common macro to be included by all bsp-configure.acs
5AC_DEFUN([RTEMS_BSP_CONFIGURE],
6[
7  AC_PREREQ(2.59)
8  AM_MAINTAINER_MODE
9  RTEMS_ENV_RTEMSBSP
10
11  RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
12
13  AC_CONFIG_HEADERS([include/bspopts.tmp:include/bspopts.h.in],[
14echo "/* BSP dependent options file */"         >$tmp/config.h
15echo "/* automatically generated -- DO NOT EDIT!! */" >>$tmp/config.h
16echo                                                  >>$tmp/config.h
17echo "#ifndef __BSP_OPTIONS_h"                        >>$tmp/config.h
18echo "#define __BSP_OPTIONS_h"                        >>$tmp/config.h
19echo                                                  >>$tmp/config.h
20sed -e '/.*PACKAGE.*/d' include/bspopts.tmp >> $tmp/config.h
21echo                                                  >>$tmp/config.h
22echo "#endif"                                         >>$tmp/config.h
23  AS_IF([cmp -s include/bspopts.h $tmp/config.h 2>/dev/null],[
24    AC_MSG_NOTICE([include/bspopts.h is unchanged])
25    rm -f $tmp/config.h],[
26    AC_MSG_NOTICE([creating include/bspopts.h])
27    rm -f include/bspopts.h
28    mv $tmp/config.h include/bspopts.h
29  ])
30])
31  RTEMS_PROJECT_ROOT
32
33  RTEMS_CHECK_MULTIPROCESSING
34])
Note: See TracBrowser for help on using the repository browser.