COIN-OR::LEMON - Graph Library

source: lemon-1.2/Makefile.am @ 663:8b0df68370a4

Last change on this file since 663:8b0df68370a4 was 629:70a356a461a5, checked in by Balazs Dezso <deba@…>, 15 years ago

Fix Makefile.am EXTRA_DIST (#276)

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