mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
* 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.
18 lines
481 B
Plaintext
18 lines
481 B
Plaintext
dnl $Id$
|
|
|
|
dnl Override the set of BSPs to be built.
|
|
dnl used by the toplevel configure script
|
|
dnl RTEMS_ENABLE_RTEMSBSP(rtems_bsp_list)
|
|
AC_DEFUN([RTEMS_ENABLE_RTEMSBSP],
|
|
[
|
|
AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])
|
|
AC_ARG_ENABLE(rtemsbsp,
|
|
[AC_HELP_STRING([--enable-rtemsbsp="bsp1 bsp2 .."],
|
|
[BSPs to include in build])],
|
|
[case "${enable_rtemsbsp}" in
|
|
yes ) enable_rtemsbsp="" ;;
|
|
no ) enable_rtemsbsp="no" ;;
|
|
*) enable_rtemsbsp="$enable_rtemsbsp" ;;
|
|
esac],[enable_rtemsbsp=""])
|
|
])
|