URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems/] [c/] [src/] [exec/] [configure.in] - Rev 1765
Compare with Previous | Blame | View Log
dnl Process this file with autoconf to produce a configure script.dnldnl $Id: configure.in,v 1.2 2001-09-27 11:59:12 chris Exp $AC_PREREQ(2.13)AC_INIT(score)RTEMS_TOP(../../..)AC_CONFIG_AUX_DIR(../../..)RTEMS_CANONICAL_TARGET_CPUAM_INIT_AUTOMAKE(rtems-c-src-exec,$RTEMS_VERSION,no)AM_MAINTAINER_MODERTEMS_ENABLE_MULTIPROCESSINGRTEMS_ENABLE_POSIXRTEMS_ENABLE_ITRONRTEMS_ENABLE_INLINESRTEMS_ENABLE_GCC28RTEMS_ENV_RTEMSBSPRTEMS_CHECK_CPURTEMS_CANONICAL_HOSTRTEMS_PROJECT_ROOTRTEMS_PROG_CC_FOR_TARGETRTEMS_CANONICALIZE_TOOLSRTEMS_CHECK_NEWLIB# Check if there is custom/*.cfg for this BSPRTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)RTEMS_CHECK_POSIX_API(RTEMS_BSP)RTEMS_CHECK_ITRON_API(RTEMS_BSP)# If RTEMS macros are enabled, then use them. Otherwise, use inlines.if test "$RTEMS_USE_MACROS" = "yes"; thenINLINEdir="macros"if test "$HAS_POSIX_API" = "yes"; then# The problem is that there is currently no code in posix/macros :)AC_MSG_ERROR(Macros are not implemented for the POSIX API)fiif test "$HAS_ITRON_API" = "yes"; then# The problem is that there is currently no code in itron/macros :)AC_MSG_ERROR(Macros are not implemented for the ITRON API)fielseINLINEdir="inline"fiAM_CONDITIONAL(INLINE,test "$INLINEdir" = "inline" )AM_CONDITIONAL(MACROS,test "$INLINEdir" = "macros" )AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes" )AC_SUBST(RTEMS_VERSION)AM_CONDITIONAL(HAS_POSIX,test "$HAS_POSIX_API" = "yes")AM_CONDITIONAL(HAS_ITRON,test "$HAS_ITRON_API" = "yes")if test "$HAS_POSIX_API" = "yes"; thencfg_subdirs="posix"fiif test "$HAS_ITRON_API" = "yes"; thencfg_subdirs="$cfg_subdirs itron"fiAC_CONFIG_SUBDIRS($cfg_subdirs)AC_CONFIG_SUBDIRS(score/cpu/$RTEMS_CPU)# Explicitly list all Makefiles hereAC_OUTPUT(Makefilertems/Makefilertems/src/Makefilertems/include/Makefilertems/include/rtems/Makefilertems/include/rtems/rtems/Makefilertems/optman/Makefilertems/inline/Makefilertems/inline/rtems/Makefilertems/inline/rtems/rtems/Makefilertems/macros/Makefilertems/macros/rtems/Makefilertems/macros/rtems/rtems/Makefilesapi/Makefilesapi/src/Makefilesapi/include/Makefilesapi/include/rtems/Makefilesapi/include/rtems/sptables.hsapi/inline/Makefilesapi/inline/rtems/Makefilesapi/macros/Makefilesapi/macros/rtems/Makefilesapi/optman/Makefilescore/Makefilescore/cpu/Makefilescore/include/Makefilescore/include/rtems/Makefilescore/include/rtems/score/Makefilescore/inline/Makefilescore/inline/rtems/Makefilescore/inline/rtems/score/Makefilescore/macros/Makefilescore/macros/rtems/Makefilescore/macros/rtems/score/Makefilescore/src/Makefilewrapup/Makefilewrapup/rtems/Makefilewrapup/itron/Makefilewrapup/posix/Makefile)
