COIN-OR::LEMON - Graph Library

source: lemon-1.2/Makefile.am @ 321:a412d990f043

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

Merge

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