Changeset 564:eda12d8ac953 in lemon-main
- Timestamp:
- 04/01/09 15:18:35 (16 years ago)
- Branch:
- default
- Children:
- 565:7ab97e2a0c33, 572:be6646ac5d89
- Phase:
- public
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
r504 r564 28 28 29 29 This command compiles the non-template part of LEMON into libemon.a 30 file. It also compiles the programs in the tools and demo subdirectories31 when enabled.30 file. It also compiles the programs in the tools subdirectory by 31 default. 32 32 33 33 4. `make check' … … 75 75 76 76 Set the installation prefix to PREFIX. By default it is /usr/local. 77 78 --enable-demo79 80 Build the examples in the demo subdirectory.81 82 --disable-demo83 84 Do not build the examples in the demo subdirectory (default).85 77 86 78 --enable-tools -
Makefile.am
r481 r564 40 40 include test/Makefile.am 41 41 include doc/Makefile.am 42 include demo/Makefile.am43 42 include tools/Makefile.am 43 44 DIST_SUBDIRS = demo 45 46 demo: 47 $(MAKE) $(AM_MAKEFLAGS) -C demo 44 48 45 49 MRPROPERFILES = \ … … 69 73 bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2 70 74 71 .PHONY: mrproper dist-bz2 distcheck-bz275 .PHONY: demo mrproper dist-bz2 distcheck-bz2 -
configure.ac
r517 r564 65 65 AM_CONDITIONAL([HAVE_MIP], [test x"$lx_mip_found" = x"yes"]) 66 66 67 dnl Disable/enable building the demo programs.68 AC_ARG_ENABLE([demo],69 AS_HELP_STRING([--enable-demo], [build the demo programs])70 AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),71 [], [enable_demo=no])72 AC_MSG_CHECKING([whether to build the demo programs])73 if test x"$enable_demo" != x"no"; then74 AC_MSG_RESULT([yes])75 else76 AC_MSG_RESULT([no])77 fi78 AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])79 80 67 dnl Disable/enable building the binary tools. 81 68 AC_ARG_ENABLE([tools], … … 111 98 AC_CONFIG_FILES([ 112 99 Makefile 100 demo/Makefile 113 101 cmake/version.cmake 114 102 doc/Doxyfile … … 133 121 echo CLP support................... : $lx_clp_found 134 122 echo 135 echo Build demo programs........... : $enable_demo136 123 echo Build additional tools........ : $enable_tools 137 124 echo -
demo/Makefile.am
r400 r564 1 EXTRA_DIST += \ 2 demo/CMakeLists.txt \ 3 demo/digraph.lgf 1 AM_CXXFLAGS = $(WARNINGCXXFLAGS) 4 2 5 if WANT_DEMO 3 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) 4 LDADD = $(top_builddir)/lemon/libemon.la 6 5 7 noinst_PROGRAMS += \ 8 demo/arg_parser_demo \ 9 demo/graph_to_eps_demo \ 10 demo/lgf_demo 6 EXTRA_DIST = \ 7 CMakeLists.txt \ 8 digraph.lgf 11 9 12 endif WANT_DEMO 10 noinst_PROGRAMS = \ 11 arg_parser_demo \ 12 graph_to_eps_demo \ 13 lgf_demo 13 14 14 demo_arg_parser_demo_SOURCES = demo/arg_parser_demo.cc15 demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc16 demo_lgf_demo_SOURCES = demo/lgf_demo.cc15 arg_parser_demo_SOURCES = arg_parser_demo.cc 16 graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc 17 lgf_demo_SOURCES = lgf_demo.cc -
doc/groups.dox
r559 r564 672 672 the \c demo subdirectory of the source tree. 673 673 674 I t order to compile them, use <tt>--enable-demo</tt> configure option when675 build the library.674 In order to compile them, use the <tt>make demo</tt> or the 675 <tt>make check</tt> commands. 676 676 */ 677 677 -
scripts/mk-release.sh
r508 r564 15 15 16 16 autoreconf -vif 17 ./configure --enable-demo17 ./configure 18 18 19 19 make -
test/Makefile.am
r543 r564 37 37 test/time_measure_test \ 38 38 test/unionfind_test 39 40 test_test_tools_pass_DEPENDENCIES = demo 39 41 40 42 if HAVE_LP
Note: See TracChangeset
for help on using the changeset viewer.