COIN-OR::LEMON - Graph Library

source: lemon-1.2/Makefile.am @ 4:3f411aa35bd7

Last change on this file since 4:3f411aa35bd7 was 1:51eaad3a817b, checked in by Akos Ladanyi <ladanyi@…>, 16 years ago

Autotools based build system.

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