COIN-OR::LEMON - Graph Library

source: lemon-1.2/Makefile.am @ 508:861a9d5ff283

Last change on this file since 508:861a9d5ff283 was 508:861a9d5ff283, checked in by Alpar Juttner <alpar@…>, 15 years ago

Merge (manually add cmake/FindGLPK.cmake to Makefile.am)

File size: 1.4 KB
Line 
1ACLOCAL_AMFLAGS = -I m4
2
3AM_CXXFLAGS = $(WARNINGCXXFLAGS)
4
5AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)
6LDADD = $(top_builddir)/lemon/libemon.la
7
8EXTRA_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
22pkgconfigdir = $(libdir)/pkgconfig
23lemondir = $(pkgincludedir)
24bitsdir = $(lemondir)/bits
25conceptdir = $(lemondir)/concepts
26pkgconfig_DATA =
27lib_LTLIBRARIES =
28lemon_HEADERS =
29bits_HEADERS =
30concept_HEADERS =
31noinst_HEADERS =
32noinst_PROGRAMS =
33bin_PROGRAMS =
34check_PROGRAMS =
35dist_bin_SCRIPTS =
36TESTS =
37XFAIL_TESTS =
38
39include lemon/Makefile.am
40include test/Makefile.am
41include doc/Makefile.am
42include demo/Makefile.am
43include tools/Makefile.am
44
45MRPROPERFILES = \
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
59mrproper:
60        $(MAKE) $(AM_MAKEFLAGS) maintainer-clean
61        -rm -f $(MRPROPERFILES)
62
63dist-bz2: dist
64        zcat $(PACKAGE)-$(VERSION).tar.gz | \
65        bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
66
67distcheck-bz2: distcheck
68        zcat $(PACKAGE)-$(VERSION).tar.gz | \
69        bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
70
71.PHONY: mrproper dist-bz2 distcheck-bz2
Note: See TracBrowser for help on using the repository browser.