COIN-OR::LEMON - Graph Library

source: lemon-1.2/Makefile.am @ 319:5e12d7734036

Last change on this file since 319:5e12d7734036 was 310:a9e8f310507f, checked in by Alpar Juttner <alpar@…>, 15 years ago

Repository reorganization

  • lemon-0.x-to-1.x.sh moved to tools/ and it installs to $(bindir).
  • benchmark/ dir has been removed.
File size: 1.2 KB
Line 
1ACLOCAL_AMFLAGS = -I m4
2
3AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)
4LDADD = $(top_builddir)/lemon/libemon.la
5
6EXTRA_DIST = \
7        LICENSE \
8        m4/lx_check_cplex.m4 \
9        m4/lx_check_glpk.m4 \
10        m4/lx_check_soplex.m4 \
11        CMakeLists.txt \
12        cmake
13
14pkgconfigdir = $(libdir)/pkgconfig
15lemondir = $(pkgincludedir)
16bitsdir = $(lemondir)/bits
17conceptdir = $(lemondir)/concepts
18pkgconfig_DATA =
19lib_LTLIBRARIES =
20lemon_HEADERS =
21bits_HEADERS =
22concept_HEADERS =
23noinst_HEADERS =
24noinst_PROGRAMS =
25bin_PROGRAMS =
26check_PROGRAMS =
27dist_bin_SCRIPTS =
28TESTS =
29XFAIL_TESTS =
30
31include lemon/Makefile.am
32include test/Makefile.am
33include doc/Makefile.am
34include demo/Makefile.am
35include tools/Makefile.am
36
37MRPROPERFILES = \
38        aclocal.m4 \
39        config.h.in \
40        config.h.in~ \
41        configure \
42        Makefile.in \
43        build-aux/config.guess \
44        build-aux/config.sub \
45        build-aux/depcomp \
46        build-aux/install-sh \
47        build-aux/ltmain.sh \
48        build-aux/missing \
49        doc/doxygen.log
50
51mrproper:
52        $(MAKE) $(AM_MAKEFLAGS) maintainer-clean
53        -rm -f $(MRPROPERFILES)
54
55dist-bz2: dist
56        zcat $(PACKAGE)-$(VERSION).tar.gz | \
57        bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
58
59distcheck-bz2: distcheck
60        zcat $(PACKAGE)-$(VERSION).tar.gz | \
61        bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
62
63.PHONY: mrproper dist-bz2 distcheck-bz2
Note: See TracBrowser for help on using the repository browser.