COIN-OR::LEMON - Graph Library

Changeset 2103:a979fcdda073 in lemon-0.x


Ignore:
Timestamp:
06/21/06 10:35:23 (18 years ago)
Author:
Akos Ladanyi
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2794
Message:

Exclude the gui from the build.

Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r2056 r2103  
    22
    33EXTRA_DIST = \
    4         build-aux/config.rpath \
    5         build-aux/mkinstalldirs \
    64        LICENSE \
    7         ABOUT-NLS \
    85        lemon.spec \
    96        autopackage/default.apspec.in \
     
    1411  MAYBE_DOC = doc
    1512endif
    16 if WANT_GUI
    17   MAYBE_GUI = gui
    18 endif
    1913if WANT_DEMO
    2014  MAYBE_DEMO = demo
     
    2418endif
    2519
    26 SUBDIRS = lemon po m4 $(MAYBE_BENCHMARK) $(MAYBE_DEMO) $(MAYBE_GUI) $(MAYBE_DOC) test
     20SUBDIRS = lemon $(MAYBE_BENCHMARK) $(MAYBE_DEMO) $(MAYBE_DOC) test
    2721
    2822MRPROPERFILES = \
     
    3832        build-aux/ltmain.sh \
    3933        build-aux/missing \
    40         build-aux/mkinstalldirs \
    41         build-aux/config.rpath \
    4234        doc/Makefile.in \
    4335        doc/doxygen.log \
     
    4638        test/Makefile.in \
    4739        benchmark/Makefile.in \
    48         demo/Makefile.in \
    49         gui/icons/Makefile.in \
    50         gui/Makefile.in \
    51         ABOUT-NLS \
    52         m4/Makefile.in \
    53         m4/lib-link.m4 \
    54         m4/printf-posix.m4 \
    55         m4/uintmax_t.m4 \
    56         m4/signed.m4 \
    57         m4/iconv.m4 \
    58         m4/inttypes.m4 \
    59         m4/longlong.m4 \
    60         m4/glibc21.m4 \
    61         m4/inttypes_h.m4 \
    62         m4/codeset.m4 \
    63         m4/longdouble.m4 \
    64         m4/nls.m4 \
    65         m4/intmax.m4 \
    66         m4/lib-prefix.m4 \
    67         m4/glibc2.m4 \
    68         m4/xsize.m4 \
    69         m4/lcmessage.m4 \
    70         m4/lib-ld.m4 \
    71         m4/ulonglong.m4 \
    72         m4/wint_t.m4 \
    73         m4/progtest.m4 \
    74         m4/inttypes-pri.m4 \
    75         m4/stdint_h.m4 \
    76         m4/intdiv0.m4 \
    77         m4/isc-posix.m4 \
    78         m4/po.m4 \
    79         m4/size_max.m4 \
    80         m4/gettext.m4 \
    81         m4/wchar_t.m4 \
    82         po/Rules-quot \
    83         po/en@quot.header \
    84         po/insert-header.sin \
    85         po/quot.sed \
    86         po/en@boldquot.header \
    87         po/boldquot.sed \
    88         po/Makevars.template \
    89         po/remove-potcdate.sin \
    90         po/Makefile.in.in
     40        demo/Makefile.in
    9141
    9242doc-clean:
  • bootstrap

    r2043 r2103  
    7676fi
    7777
    78 quiet || echo "Try using 'autoreconf -vi' instead of this."
    79 
    8078set -e
    8179quiet || set -x
    8280
    83 autopoint
    8481$aclocal -I m4
    8582(quiet && exec > /dev/null; libtoolize --force --copy)
  • configure.ac

    r2068 r2103  
    1717AC_DISABLE_SHARED
    1818AC_PROG_LIBTOOL
    19 
    20 dnl i18n
    21 AM_GNU_GETTEXT_VERSION([0.14.2])
    22 AM_GNU_GETTEXT([external])
    2319
    2420if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
     
    5854AC_SUBST(DOXYGEN_INTERNAL_DOCS)
    5955AM_CONDITIONAL([WANT_DOC], [test x"$enable_doc" != x"no"])
    60 
    61 dnl Disable/enable building the GUI
    62 AC_ARG_ENABLE([gui],
    63 AS_HELP_STRING([--enable-gui], [build the GUI])
    64 AS_HELP_STRING([--disable-gui], [do not build the GUI @<:@default@:>@]),
    65               [], [enable_gui=no])
    66 AC_MSG_CHECKING([whether to build the GUI])
    67 if test x"$enable_gui" != x"no"; then
    68   AC_MSG_RESULT([yes])
    69 else
    70   AC_MSG_RESULT([no])
    71 fi
    72 if test x"$enable_gui" != x"no"; then
    73   PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0 gtkmm-2.4 >= 2.6])
    74 fi
    75 AM_CONDITIONAL([WANT_GUI], [test x"$enable_gui" != x"no"])
    7656
    7757dnl Disable/enable building the demo programs
     
    126106demo/Makefile
    127107test/Makefile
    128 gui/Makefile
    129 po/Makefile.in
    130 m4/Makefile
    131108])
    132109
     
    146123echo build benchmarks.............. : $enable_benchmark
    147124echo build demo programs........... : $enable_demo
    148 echo build GUI..................... : $enable_gui
    149125echo
    150126echo The packace will be installed in
Note: See TracChangeset for help on using the changeset viewer.