Changeset e1d8abb in rtems for c/src/exec/configure.in
- Timestamp:
- Sep 7, 1999, 1:45:03 PM (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a24c280
- Parents:
- c935c5f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/configure.in
rc935c5f re1d8abb 8 8 AC_CONFIG_AUX_DIR(../../..) 9 9 10 AC_PROG_MAKE_SET11 10 RTEMS_CANONICAL_TARGET_CPU 12 11 12 AM_INIT_AUTOMAKE(rtems-c-src-exec,$RTEMS_VERSION,no) 13 13 AM_MAINTAINER_MODE 14 14 RTEMS_ENABLE_MULTIPROCESSING 15 15 RTEMS_ENABLE_POSIX 16 RTEMS_ENABLE_NETWORKING17 16 RTEMS_ENABLE_INLINES 18 RTEMS_ENABLE_CXX19 17 RTEMS_ENABLE_GCC28 20 18 RTEMS_ENABLE_LIBCDIR 21 19 22 20 RTEMS_ENV_RTEMSBSP 23 24 AC_PROG_LN_S25 AC_PROG_INSTALL26 RTEMS_PATH_KSH27 21 28 22 RTEMS_CHECK_CPU … … 33 27 dnl check target cc 34 28 RTEMS_PROG_CC_FOR_TARGET 35 36 29 RTEMS_CANONICALIZE_TOOLS 37 38 dnl if this is an i386, does gas have good code16 support?39 RTEMS_I386_GAS_CODE1640 41 RTEMS_CHECK_SYSV_UNIX42 30 43 31 RTEMS_CHECK_NEWLIB … … 48 36 RTEMS_CHECK_POSIX_API(RTEMS_BSP) 49 37 50 # find all the Executive Makefiles51 RTEMS_CHECK_MAKEFILE(score/cpu/$RTEMS_CPU)52 53 38 # If RTEMS macros are enabled, then use them. Otherwise, use inlines. 54 39 if test "$RTEMS_USE_MACROS" = "yes"; then 55 inline_dir="macros"40 INLINEdir="macros" 56 41 if test "$HAS_POSIX_API" = "yes"; then 57 42 # The problem is that there is currently no code in posix/macros :) … … 59 44 fi 60 45 else 61 inline_dir="inline"46 INLINEdir="inline" 62 47 fi 63 64 if test "$HAS_POSIX_API" = "yes"; then 65 makefiles="$makefiles posix/Makefile" 66 makefiles="$makefiles posix/src/Makefile" 67 makefiles="$makefiles posix/include/Makefile" 68 makefiles="$makefiles posix/include/sys/Makefile" 69 makefiles="$makefiles posix/include/rtems/Makefile" 70 makefiles="$makefiles posix/include/rtems/posix/Makefile" 71 makefiles="$makefiles posix/include/wrap/Makefile" 72 makefiles="$makefiles posix/optman/Makefile" 73 makefiles="$makefiles wrapup/posix/Makefile" 74 75 makefiles="$makefiles posix/${inline_dir}/Makefile" 76 makefiles="$makefiles posix/${inline_dir}/rtems/Makefile" 77 makefiles="$makefiles posix/${inline_dir}/rtems/posix/Makefile" 78 fi 48 AM_CONDITIONAL(INLINE,test "$INLINEdir" = "inline" ) 49 AM_CONDITIONAL(MACROS,test "$INLINEdir" = "macros" ) 79 50 80 51 AC_SUBST(RTEMS_VERSION) 81 52 82 AC_SUBST(rtems_cv_prog_cc_cross) 83 AC_SUBST(RTEMS_USE_GCC272) 84 AC_SUBST(program_prefix) 85 AC_SUBST(CC_CFLAGS_DEFAULT) 86 AC_SUBST(CC_CFLAGS_DEBUG_V) 87 AC_SUBST(CC_CFLAGS_PROFILE_V) 88 AC_SUBST(CC_LDFLAGS_PROFILE_V) 53 AM_CONDITIONAL(HAS_POSIX,test "$HAS_POSIX_API" = "yes") 54 55 if test "$HAS_POSIX_API" = "yes"; then 56 cfg_subdirs="posix" 57 fi 58 AC_CONFIG_SUBDIRS($cfg_subdirs) 59 AC_CONFIG_SUBDIRS(score/cpu) 60 61 PROJECT_INCLUDE="\$(PROJECT_ROOT)/$RTEMS_BSP/lib/include" 62 AC_SUBST(PROJECT_INCLUDE) 89 63 90 64 # Try to explicitly list a Makefile here … … 94 68 rtems/src/Makefile 95 69 rtems/include/Makefile 96 rtems/include/wrap/Makefile97 70 rtems/include/rtems/Makefile 98 71 rtems/include/rtems/rtems/Makefile 99 72 rtems/optman/Makefile 100 rtems/${inline_dir}/Makefile 101 rtems/${inline_dir}/rtems/Makefile 102 rtems/${inline_dir}/rtems/rtems/Makefile 73 rtems/inline/Makefile 74 rtems/inline/rtems/Makefile 75 rtems/inline/rtems/rtems/Makefile 76 rtems/macros/Makefile 77 rtems/macros/rtems/Makefile 78 rtems/macros/rtems/rtems/Makefile 103 79 sapi/Makefile 104 80 sapi/src/Makefile 105 81 sapi/include/Makefile 106 sapi/include/wrap/Makefile107 82 sapi/include/rtems/Makefile 108 83 sapi/include/rtems/sptables.h 109 sapi/${inline_dir}/Makefile 110 sapi/${inline_dir}/rtems/Makefile 84 sapi/inline/Makefile 85 sapi/inline/rtems/Makefile 86 sapi/macros/Makefile 87 sapi/macros/rtems/Makefile 111 88 sapi/optman/Makefile 112 89 score/Makefile … … 114 91 score/include/Makefile 115 92 score/include/rtems/Makefile 116 score/include/rtems/wrap/Makefile117 93 score/include/rtems/score/Makefile 118 score/${inline_dir}/Makefile 119 score/${inline_dir}/rtems/Makefile 120 score/${inline_dir}/rtems/score/Makefile 94 score/inline/Makefile 95 score/inline/rtems/Makefile 96 score/inline/rtems/score/Makefile 97 score/macros/Makefile 98 score/macros/rtems/Makefile 99 score/macros/rtems/score/Makefile 121 100 score/src/Makefile 122 101 wrapup/Makefile 123 102 wrapup/rtems/Makefile 124 $makefiles 103 wrapup/posix/Makefile 125 104 )
Note: See TracChangeset
for help on using the changeset viewer.