source:
issm/oecreview/Archive/13393-13976/ISSM-13654-13655.diff@
14312
Last change on this file since 14312 was 13980, checked in by , 12 years ago | |
---|---|
File size: 2.4 KB |
-
../trunk-jpl/m4/issm_options.m4
13 13 fi 14 14 15 15 dnl }}} 16 dnl shared build {{{16 dnl Shared build {{{ 17 17 AC_ARG_ENABLE([sharedlibs], dnl feature 18 18 AS_HELP_STRING([--enable-sharedlibs], [produce libISSM.so.0]), dnl help string 19 19 [enable_sharedlibs=$enableval], dnl action if given 20 20 [enable_sharedlibs=no]) dnl action if not given 21 21 AM_CONDITIONAL([SHAREDLIBS], [test x$enable_sharedlibs = xyes]) 22 22 dnl }}} 23 24 dnl shared build {{{ 23 dnl Version{{{ 25 24 AC_ARG_ENABLE([version], dnl feature 26 25 AS_HELP_STRING([--enable-version], [produce libISSM.so.0]), dnl help string 27 26 [enable_version=$enableval], dnl action if given 28 27 [enable_version=no]) dnl action if not given 29 28 AM_CONDITIONAL([VERSION], [test x$enable_VERSION = xyes]) 30 29 dnl }}} 31 32 dnl Modules build {{{ 33 AC_ARG_WITH([modules], 34 AS_HELP_STRING([--with-modules = value],[modules compilation. ]), 35 [MODULES_VALUE=$withval],[MODULES_VALUE="yes"]) 36 AC_MSG_CHECKING(for modules compilation) 37 AM_CONDITIONAL([MODULES], [test $MODULES_VALUE = yes]) 38 AC_MSG_RESULT($MODULES_VALUE) 30 dnl Wrappers build {{{ 31 AC_ARG_WITH([wrappers], 32 AS_HELP_STRING([--with-wrappers = value],[wrappers compilation. ]), 33 [WRAPPERS_VALUE=$withval],[WRAPPERS_VALUE="yes"]) 34 AC_MSG_CHECKING(for wrappers compilation) 35 AM_CONDITIONAL([WRAPPERS], [test x$WRAPPERS_VALUE = xyes]) 36 AC_MSG_RESULT($WRAPPERS_VALUE) 39 37 dnl }}} 40 38 dnl Extensions{{{ 41 39 ISSMEXT=".exe" -
../trunk-jpl/configure.ac
35 35 AC_CONFIG_FILES([Makefile 36 36 src/Makefile 37 37 src/c/Makefile 38 src/ modules/Makefile39 src/ modules/python/Makefile40 src/ modules/matlab/Makefile38 src/wrappers/Makefile 39 src/wrappers/python/Makefile 40 src/wrappers/matlab/Makefile 41 41 src/m/Makefile]) 42 42 43 43 #End of configure.ac
Note:
See TracBrowser
for help on using the repository browser.