Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Fri, 17 Apr 2009 18:04:36 +0200
changeset 609 e6927fe719e6
parent 363 a637fb9d457b
parent 478 64c2641286df
child 564 eda12d8ac953
permissions -rw-r--r--
Support >= and <= constraints in NetworkSimplex (#219, #234)

By default the same inequality constraints are supported as by
Circulation (the GEQ form), but the LEQ form can also be selected
using the problemType() function.

The documentation of the min. cost flow module is reworked and
extended with important notes and explanations about the different
variants of the problem and about the dual solution and optimality
conditions.
     1 ACLOCAL_AMFLAGS = -I m4
     2 
     3 AM_CXXFLAGS = $(WARNINGCXXFLAGS)
     4 
     5 AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)
     6 LDADD = $(top_builddir)/lemon/libemon.la
     7 
     8 EXTRA_DIST = \
     9 	AUTHORS \
    10 	LICENSE \
    11 	m4/lx_check_cplex.m4 \
    12 	m4/lx_check_glpk.m4 \
    13 	m4/lx_check_soplex.m4 \
    14 	CMakeLists.txt \
    15 	cmake/FindGhostscript.cmake \
    16 	cmake/FindGLPK.cmake \
    17 	cmake/version.cmake.in \
    18 	cmake/version.cmake \
    19 	cmake/nsis/lemon.ico \
    20 	cmake/nsis/uninstall.ico
    21 
    22 pkgconfigdir = $(libdir)/pkgconfig
    23 lemondir = $(pkgincludedir)
    24 bitsdir = $(lemondir)/bits
    25 conceptdir = $(lemondir)/concepts
    26 pkgconfig_DATA =
    27 lib_LTLIBRARIES =
    28 lemon_HEADERS =
    29 bits_HEADERS =
    30 concept_HEADERS =
    31 noinst_HEADERS =
    32 noinst_PROGRAMS =
    33 bin_PROGRAMS =
    34 check_PROGRAMS =
    35 dist_bin_SCRIPTS =
    36 TESTS =
    37 XFAIL_TESTS =
    38 
    39 include lemon/Makefile.am
    40 include test/Makefile.am
    41 include doc/Makefile.am
    42 include demo/Makefile.am
    43 include tools/Makefile.am
    44 
    45 MRPROPERFILES = \
    46 	aclocal.m4 \
    47 	config.h.in \
    48 	config.h.in~ \
    49 	configure \
    50 	Makefile.in \
    51 	build-aux/config.guess \
    52 	build-aux/config.sub \
    53 	build-aux/depcomp \
    54 	build-aux/install-sh \
    55 	build-aux/ltmain.sh \
    56 	build-aux/missing \
    57 	doc/doxygen.log
    58 
    59 mrproper:
    60 	$(MAKE) $(AM_MAKEFLAGS) maintainer-clean
    61 	-rm -f $(MRPROPERFILES)
    62 
    63 dist-bz2: dist
    64 	zcat $(PACKAGE)-$(VERSION).tar.gz | \
    65 	bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
    66 
    67 distcheck-bz2: distcheck
    68 	zcat $(PACKAGE)-$(VERSION).tar.gz | \
    69 	bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
    70 
    71 .PHONY: mrproper dist-bz2 distcheck-bz2