source: rtems/aclocal/enable-rtemsbsp.m4 @ 18481be3

4.104.114.84.95
Last change on this file since 18481be3 was 9078e097, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/17/04 at 13:50:24

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

  • Makefile.am: DIST_SUBDIRS = $(SUBDIRS). Rework dist-hook.
  • configure.ac: Reflect changes to RTEMS_ENABLE_RTEMSBSP.
  • aclocal/enable-rtemsbsp.m4: Add support for --disable-rtemsbsp.
  • Property mode set to 100644
File size: 481 bytes
Line 
1dnl $Id$
2
3dnl Override the set of BSPs to be built.
4dnl used by the toplevel configure script
5dnl RTEMS_ENABLE_RTEMSBSP(rtems_bsp_list)
6AC_DEFUN([RTEMS_ENABLE_RTEMSBSP],
7[
8AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])
9AC_ARG_ENABLE(rtemsbsp,
10[AC_HELP_STRING([--enable-rtemsbsp="bsp1 bsp2 .."],
11[BSPs to include in build])],
12[case "${enable_rtemsbsp}" in
13  yes ) enable_rtemsbsp="" ;;
14  no ) enable_rtemsbsp="no" ;;
15  *) enable_rtemsbsp="$enable_rtemsbsp" ;;
16esac],[enable_rtemsbsp=""])
17])
Note: See TracBrowser for help on using the repository browser.