Changeset 13655


Ignore:
Timestamp:
10/13/12 14:16:56 (12 years ago)
Author:
Eric.Larour
Message:

CHG: switch from modules to wrappers. Some cosmetics also.

Location:
issm/trunk-jpl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/configure.ac

    r13392 r13655  
    3636                        src/Makefile
    3737                        src/c/Makefile
    38                         src/modules/Makefile
    39                         src/modules/python/Makefile
    40                         src/modules/matlab/Makefile
     38                        src/wrappers/Makefile
     39                        src/wrappers/python/Makefile
     40                        src/wrappers/matlab/Makefile
    4141                        src/m/Makefile])
    4242
  • issm/trunk-jpl/m4/issm_options.m4

    r13478 r13655  
    1414
    1515        dnl }}}
    16     dnl shared build {{{
     16    dnl Shared build {{{
    1717    AC_ARG_ENABLE([sharedlibs],                                                dnl feature
    1818        AS_HELP_STRING([--enable-sharedlibs], [produce libISSM.so.0]),         dnl help string
     
    2121    AM_CONDITIONAL([SHAREDLIBS], [test x$enable_sharedlibs = xyes])
    2222    dnl }}}
    23 
    24     dnl shared build {{{
     23    dnl Version{{{
    2524    AC_ARG_ENABLE([version],                                                dnl feature
    2625        AS_HELP_STRING([--enable-version], [produce libISSM.so.0]),         dnl help string
     
    2928    AM_CONDITIONAL([VERSION], [test x$enable_VERSION = xyes])
    3029    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)
    3937        dnl }}}
    4038        dnl Extensions{{{
Note: See TracChangeset for help on using the changeset viewer.