COIN-OR::LEMON - Graph Library

source: lemon-1.2/Makefile.am @ 491:39aaeea2d471

Last change on this file since 491:39aaeea2d471 was 478:64c2641286df, checked in by Alpar Juttner <alpar@…>, 15 years ago

Set the proper version for CMAKE in the tarballs (made by autotools).

File size: 1.4 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        AUTHORS \
8        LICENSE \
9        m4/lx_check_cplex.m4 \
10        m4/lx_check_glpk.m4 \
11        m4/lx_check_soplex.m4 \
12        CMakeLists.txt \
13        cmake/FindGhostscript.cmake \
14        cmake/version.cmake.in \
15        cmake/version.cmake \
16        cmake/nsis/lemon.ico \
17        cmake/nsis/uninstall.ico
18
19pkgconfigdir = $(libdir)/pkgconfig
20lemondir = $(pkgincludedir)
21bitsdir = $(lemondir)/bits
22conceptdir = $(lemondir)/concepts
23pkgconfig_DATA =
24lib_LTLIBRARIES =
25lemon_HEADERS =
26bits_HEADERS =
27concept_HEADERS =
28noinst_HEADERS =
29noinst_PROGRAMS =
30bin_PROGRAMS =
31check_PROGRAMS =
32dist_bin_SCRIPTS =
33TESTS =
34XFAIL_TESTS =
35
36include lemon/Makefile.am
37include test/Makefile.am
38include doc/Makefile.am
39include demo/Makefile.am
40include tools/Makefile.am
41
42MRPROPERFILES = \
43        aclocal.m4 \
44        config.h.in \
45        config.h.in~ \
46        configure \
47        Makefile.in \
48        build-aux/config.guess \
49        build-aux/config.sub \
50        build-aux/depcomp \
51        build-aux/install-sh \
52        build-aux/ltmain.sh \
53        build-aux/missing \
54        doc/doxygen.log
55
56mrproper:
57        $(MAKE) $(AM_MAKEFLAGS) maintainer-clean
58        -rm -f $(MRPROPERFILES)
59
60dist-bz2: dist
61        zcat $(PACKAGE)-$(VERSION).tar.gz | \
62        bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
63
64distcheck-bz2: distcheck
65        zcat $(PACKAGE)-$(VERSION).tar.gz | \
66        bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
67
68.PHONY: mrproper dist-bz2 distcheck-bz2
Note: See TracBrowser for help on using the repository browser.