COIN-OR::LEMON - Graph Library

source: lemon-1.2/Makefile.am @ 722:b52189c479fb

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

Fix Makefile.am EXTRA_DIST (#276)

File size: 1.5 KB
RevLine 
[1]1ACLOCAL_AMFLAGS = -I m4
2
[363]3AM_CXXFLAGS = $(WARNINGCXXFLAGS)
4
[70]5AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)
[1]6LDADD = $(top_builddir)/lemon/libemon.la
7
8EXTRA_DIST = \
[320]9        AUTHORS \
[5]10        LICENSE \
[1]11        m4/lx_check_cplex.m4 \
12        m4/lx_check_glpk.m4 \
[146]13        m4/lx_check_soplex.m4 \
[629]14        m4/lx_check_coin.m4 \
[227]15        CMakeLists.txt \
[478]16        cmake/FindGhostscript.cmake \
[629]17        cmake/FindCPLEX.cmake \
[508]18        cmake/FindGLPK.cmake \
[629]19        cmake/FindCOIN.cmake \
[478]20        cmake/version.cmake.in \
21        cmake/version.cmake \
22        cmake/nsis/lemon.ico \
23        cmake/nsis/uninstall.ico
[1]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 =
[310]38dist_bin_SCRIPTS =
[1]39TESTS =
40XFAIL_TESTS =
41
42include lemon/Makefile.am
43include test/Makefile.am
44include doc/Makefile.am
45include tools/Makefile.am
46
[564]47DIST_SUBDIRS = demo
48
49demo:
50        $(MAKE) $(AM_MAKEFLAGS) -C demo
51
[1]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 \
[146]64        doc/doxygen.log
[1]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
[564]78.PHONY: demo mrproper dist-bz2 distcheck-bz2
Note: See TracBrowser for help on using the repository browser.