tools/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Tue, 29 Sep 2009 12:03:02 +0200
changeset 824 5764dd9b6e18
parent 573 28b154307c0d
permissions -rw-r--r--
Add a new build() function to StaticDigraph (#68)

This function builds the digraph from an arc list that
contains pairs of integer indices from the range [0..n-1].
It is useful in the cases when you would like to build a
StaticDigraph from scratch, i.e. you do not want to build
another digraph that can be copied using the other build()
function.
ladanyi@721
     1
EXTRA_DIST += \
ladanyi@721
     2
	tools/CMakeLists.txt
ladanyi@721
     3
ladanyi@1
     4
if WANT_TOOLS
ladanyi@1
     5
alpar@400
     6
bin_PROGRAMS += \
alpar@573
     7
	tools/dimacs-solver \
alpar@570
     8
	tools/dimacs-to-lgf \
alpar@570
     9
	tools/lgf-gen
alpar@400
    10
alpar@310
    11
dist_bin_SCRIPTS += tools/lemon-0.x-to-1.x.sh
ladanyi@1
    12
ladanyi@1
    13
endif WANT_TOOLS
alpar@400
    14
alpar@573
    15
tools_dimacs_solver_SOURCES = tools/dimacs-solver.cc
alpar@400
    16
tools_dimacs_to_lgf_SOURCES = tools/dimacs-to-lgf.cc
alpar@570
    17
tools_lgf_gen_SOURCES = tools/lgf-gen.cc