Changes in configure.ac [9def87a:e4745d7a]
- File:
-
- 1 edited
-
configure.ac (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r9def87a re4745d7a 52 52 AC_DEFINE_UNQUOTED(CFA_BACKEND_CC, "${BACKEND_CC}", [Location of include files.]) 53 53 AC_SUBST(CFA_BACKEND_CC) 54 55 56 57 AC_ARG_ENABLE(target-release, AS_HELP_STRING([--enable-target-release], [Build and install the release target]))58 AC_ARG_ENABLE(target-debug, AS_HELP_STRING([--enable-target-debug], [Build and install the debug target]))59 60 case "$enable_target_release" in61 yes)62 case "$enable_target_debug" in63 yes)64 build_release="yes"65 build_debug="yes"66 ;;67 no)68 build_release="yes"69 build_debug="no"70 ;;71 *)72 build_release="yes"73 build_debug="no"74 ;;75 esac76 ;;77 no)78 case "$enable_target_debug" in79 yes)80 build_release="no"81 build_debug="yes"82 ;;83 no)84 AC_MSG_ERROR(Must build target debug or release)85 exit 1;86 ;;87 *)88 build_release="no"89 build_debug="yes"90 ;;91 esac92 ;;93 *)94 case "$enable_target_debug" in95 yes)96 build_release="no"97 build_debug="yes"98 ;;99 no)100 build_release="yes"101 build_debug="no"102 ;;103 *)104 build_release="yes"105 build_debug="yes"106 ;;107 esac108 ;;109 esac110 111 AM_CONDITIONAL([BUILD_RELEASE], [test "x$build_release" = "xyes"])112 AM_CONDITIONAL([BUILD_DEBUG], [test "x$build_debug" = "xyes"])113 54 114 55 if test "x$prefix" = "xNONE"; then … … 196 137 AC_OUTPUT 197 138 198 AM_COND_IF([BUILD_RELEASE],199 [AM_COND_IF([BUILD_DEBUG],200 [AC_MSG_NOTICE(Building libcfa for target: release & debug)],201 [AC_MSG_NOTICE(Building libcfa for target: release)])],202 [AC_MSG_NOTICE(Building libcfa for target: debug)])203 204 139 # Final text 205 140 AC_MSG_RESULT(Cforall configuraton completed. Type "make -j 8 install".)
Note:
See TracChangeset
for help on using the changeset viewer.