Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Tue, 24 Mar 2009 00:18:25 +0100
changeset 604 8c3112a66878
parent 363 a637fb9d457b
parent 480 64c2641286df
child 564 eda12d8ac953
permissions -rw-r--r--
Use XTI implementation instead of ATI in NetworkSimplex (#234)

XTI (eXtended Threaded Index) is an imporved version of the widely
known ATI (Augmented Threaded Index) method for storing and updating
the spanning tree structure in Network Simplex algorithms.

In the ATI data structure three indices are stored for each node:
predecessor, thread and depth. In the XTI data structure depth is
replaced by the number of successors and the last successor
(according to the thread index).
     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