1 | 1 |
ACLOCAL_AMFLAGS = -I m4 |
2 | 2 |
|
3 | 3 |
AM_CXXFLAGS = $(WARNINGCXXFLAGS) |
4 | 4 |
|
5 | 5 |
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) |
6 | 6 |
LDADD = $(top_builddir)/lemon/libemon.la |
7 | 7 |
|
8 | 8 |
EXTRA_DIST = \ |
9 | 9 |
AUTHORS \ |
10 | 10 |
LICENSE \ |
11 | 11 |
m4/lx_check_cplex.m4 \ |
12 | 12 |
m4/lx_check_glpk.m4 \ |
13 | 13 |
m4/lx_check_soplex.m4 \ |
14 |
m4/lx_check_clp.m4 \ |
|
15 |
m4/lx_check_cbc.m4 \ |
|
14 |
m4/lx_check_coin.m4 \ |
|
16 | 15 |
CMakeLists.txt \ |
17 | 16 |
cmake/FindGhostscript.cmake \ |
17 |
cmake/FindCPLEX.cmake \ |
|
18 | 18 |
cmake/FindGLPK.cmake \ |
19 |
cmake/FindCOIN.cmake \ |
|
19 | 20 |
cmake/version.cmake.in \ |
20 | 21 |
cmake/version.cmake \ |
21 | 22 |
cmake/nsis/lemon.ico \ |
22 | 23 |
cmake/nsis/uninstall.ico |
23 | 24 |
|
24 | 25 |
pkgconfigdir = $(libdir)/pkgconfig |
25 | 26 |
lemondir = $(pkgincludedir) |
26 | 27 |
bitsdir = $(lemondir)/bits |
27 | 28 |
conceptdir = $(lemondir)/concepts |
28 | 29 |
pkgconfig_DATA = |
29 | 30 |
lib_LTLIBRARIES = |
30 | 31 |
lemon_HEADERS = |
31 | 32 |
bits_HEADERS = |
32 | 33 |
concept_HEADERS = |
33 | 34 |
noinst_HEADERS = |
34 | 35 |
noinst_PROGRAMS = |
35 | 36 |
bin_PROGRAMS = |
36 | 37 |
check_PROGRAMS = |
37 | 38 |
dist_bin_SCRIPTS = |
38 | 39 |
TESTS = |
39 | 40 |
XFAIL_TESTS = |
40 | 41 |
|
41 | 42 |
include lemon/Makefile.am |
42 | 43 |
include test/Makefile.am |
43 | 44 |
include doc/Makefile.am |
44 | 45 |
include tools/Makefile.am |
45 | 46 |
|
46 | 47 |
DIST_SUBDIRS = demo |
47 | 48 |
|
48 | 49 |
demo: |
49 | 50 |
$(MAKE) $(AM_MAKEFLAGS) -C demo |
50 | 51 |
|
51 | 52 |
MRPROPERFILES = \ |
52 | 53 |
aclocal.m4 \ |
53 | 54 |
config.h.in \ |
54 | 55 |
config.h.in~ \ |
55 | 56 |
configure \ |
56 | 57 |
Makefile.in \ |
57 | 58 |
build-aux/config.guess \ |
58 | 59 |
build-aux/config.sub \ |
59 | 60 |
build-aux/depcomp \ |
60 | 61 |
build-aux/install-sh \ |
61 | 62 |
build-aux/ltmain.sh \ |
62 | 63 |
build-aux/missing \ |
63 | 64 |
doc/doxygen.log |
64 | 65 |
|
65 | 66 |
mrproper: |
66 | 67 |
$(MAKE) $(AM_MAKEFLAGS) maintainer-clean |
67 | 68 |
-rm -f $(MRPROPERFILES) |
68 | 69 |
|
69 | 70 |
dist-bz2: dist |
70 | 71 |
zcat $(PACKAGE)-$(VERSION).tar.gz | \ |
71 | 72 |
bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2 |
72 | 73 |
|
73 | 74 |
distcheck-bz2: distcheck |
74 | 75 |
zcat $(PACKAGE)-$(VERSION).tar.gz | \ |
75 | 76 |
bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2 |
76 | 77 |
|
77 | 78 |
.PHONY: demo mrproper dist-bz2 distcheck-bz2 |
0 comments (0 inline)