forked from Imagelibrary/rtems
that converts the sparc directory to automake. Ralf's note: The implementation of libbsp/sparc/* gives a nearly minimal example of the new configuration scheme.
27 lines
542 B
Plaintext
27 lines
542 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
dnl
|
|
dnl $Id$
|
|
|
|
AC_PREREQ(2.13)
|
|
AC_INIT(erc32)
|
|
RTEMS_TOP(../../../../..)
|
|
AC_CONFIG_AUX_DIR(../../../../..)
|
|
|
|
RTEMS_CANONICAL_TARGET_CPU
|
|
AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp-sparc,$RTEMS_VERSION,no)
|
|
AM_MAINTAINER_MODE
|
|
|
|
RTEMS_ENABLE_LIBCDIR
|
|
|
|
RTEMS_ENV_RTEMSBSP
|
|
RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
|
|
RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
|
|
RTEMS_PROJECT_ROOT
|
|
|
|
RTEMS_BSP_ALIAS(${RTEMS_BSP},bspdir)
|
|
AC_CONFIG_SUBDIRS($bspdir)
|
|
|
|
# try to explicitly list a Makefile here
|
|
AC_OUTPUT(
|
|
Makefile)
|