COIN-OR::LEMON - Graph Library

source: lemon-1.0/Makefile.am @ 106:9ba2d265e191

Last change on this file since 106:9ba2d265e191 was 70:e2c2763b7aec, checked in by Akos Ladanyi <ladanyi@…>, 16 years ago

Fix VPATH builds. Ported form svn trunk -r 3454.

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