Changeset 1863:12e0db6b7d0e in lemon-0.x
- Timestamp:
- 12/18/05 04:01:53 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2435
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r1688 r1863 6 6 autopackage/default.apspec.in \ 7 7 config/lx_check_cplex.m4 \ 8 config/lx_check_glpk.m4 \ 9 config/lx_enable_doc.m4 \ 10 config/lx_enable_gui.m4 8 config/lx_check_glpk.m4 11 9 12 10 if WANT_DOC … … 16 14 MAYBE_GUI = gui 17 15 endif 16 if WANT_DEMO 17 MAYBE_DEMO = demo 18 endif 19 if WANT_BENCHMARK 20 MAYBE_BENCHMARK = benchmark 21 endif 18 22 19 SUBDIRS = lemon benchmark demo$(MAYBE_GUI) $(MAYBE_DOC) test23 SUBDIRS = lemon $(MAYBE_BENCHMARK) $(MAYBE_DEMO) $(MAYBE_GUI) $(MAYBE_DOC) test 20 24 21 25 MRPROPERFILES = \ -
configure.ac
r1671 r1863 24 24 LX_CHECK_CPLEX 25 25 26 LX_ENABLE_DOC 27 LX_ENABLE_GUI 26 dnl Enable/disable installing the documentation 27 AC_ARG_ENABLE([doc], 28 AS_HELP_STRING([--enable-doc@<:@=yes|no|full@:>@], [build the documentation (full enables internal documentation too) @<:@default=yes@:>@]) 29 AS_HELP_STRING([--disable-doc], [do not build the documentation]), 30 [], [enable_doc=yes]) 31 32 AC_MSG_CHECKING([whether to build the documention]) 33 case "$enable_doc" in 34 yes) 35 DOXYGEN_INTERNAL_DOCS=NO 36 AC_MSG_RESULT([yes]) 37 ;; 38 full) 39 DOXYGEN_INTERNAL_DOCS=YES 40 AC_MSG_RESULT([full]) 41 ;; 42 no) 43 DOXYGEN_INTERNAL_DOCS=NO 44 AC_MSG_RESULT([no]) 45 ;; 46 *) 47 AC_MSG_ERROR([bad value $enable_doc for option --enable-doc]) 48 ;; 49 esac 50 AC_SUBST(DOXYGEN_INTERNAL_DOCS) 51 AM_CONDITIONAL([WANT_DOC], [test x"$enable_doc" != x"no"]) 52 53 dnl Disable/enable building the GUI 54 AC_ARG_ENABLE([gui], 55 AS_HELP_STRING([--enable-gui], [build the GUI]) 56 AS_HELP_STRING([--disable-gui], [do not build the GUI @<:@default@:>@]), 57 [], [enable_gui=no]) 58 AC_MSG_CHECKING([whether to build the GUI]) 59 if test x"$enable_gui" != x"no"; then 60 AC_MSG_RESULT([yes]) 61 else 62 AC_MSG_RESULT([no]) 63 fi 64 if test x"$enable_gui" != x"no"; then 65 PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0]) 66 fi 67 AM_CONDITIONAL([WANT_GUI], [test x"$enable_gui" != x"no"]) 68 69 dnl Disable/enable building the demo programs 70 AC_ARG_ENABLE([demo], 71 AS_HELP_STRING([--enable-demo], [build the demo programs]) 72 AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]), 73 [], [enable_demo=no]) 74 AC_MSG_CHECKING([whether to build the demo programs]) 75 if test x"$enable_demo" != x"no"; then 76 AC_MSG_RESULT([yes]) 77 else 78 AC_MSG_RESULT([no]) 79 fi 80 AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"]) 81 82 dnl Disable/enable building the benchmarks 83 AC_ARG_ENABLE([benchmark], 84 AS_HELP_STRING([--enable-benchmark], [build the benchmarks]) 85 AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]), 86 [], [enable_benchmark=no]) 87 AC_MSG_CHECKING([whether to build the benchmarks]) 88 if test x"$enable_benchmark" != x"no"; then 89 AC_MSG_RESULT([yes]) 90 else 91 AC_MSG_RESULT([no]) 92 fi 93 AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"]) 94 95 dnl Checks for header files. 96 AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h) 28 97 29 98 dnl Checks for header files. … … 53 122 test/Makefile 54 123 gui/Makefile 55 gui/icons/Makefile56 124 ]) 57 125 … … 69 137 echo CPLEX support................. : $lx_cplex_found 70 138 echo 139 echo build benchmarks.............. : $enable_benchmark 140 echo build demo programs........... : $enable_demo 71 141 echo build GUI..................... : $enable_gui 72 142 echo
Note: See TracChangeset
for help on using the changeset viewer.