0
7
0
| ... | ... |
@@ -2,17 +2,18 @@ |
| 2 | 2 |
|
| 3 | 3 |
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) |
| 4 | 4 |
LDADD = $(top_builddir)/lemon/libemon.la |
| 5 | 5 |
|
| 6 | 6 |
EXTRA_DIST = \ |
| 7 | 7 |
LICENSE \ |
| 8 | 8 |
m4/lx_check_cplex.m4 \ |
| 9 | 9 |
m4/lx_check_glpk.m4 \ |
| 10 |
m4/lx_check_soplex.m4 |
|
| 10 |
m4/lx_check_soplex.m4 \ |
|
| 11 |
CMakeLists.txt |
|
| 11 | 12 |
|
| 12 | 13 |
pkgconfigdir = $(libdir)/pkgconfig |
| 13 | 14 |
lemondir = $(pkgincludedir) |
| 14 | 15 |
bitsdir = $(lemondir)/bits |
| 15 | 16 |
conceptdir = $(lemondir)/concepts |
| 16 | 17 |
pkgconfig_DATA = |
| 17 | 18 |
lib_LTLIBRARIES = |
| 18 | 19 |
lemon_HEADERS = |
| ... | ... |
@@ -39,23 +40,17 @@ |
| 39 | 40 |
configure \ |
| 40 | 41 |
Makefile.in \ |
| 41 | 42 |
build-aux/config.guess \ |
| 42 | 43 |
build-aux/config.sub \ |
| 43 | 44 |
build-aux/depcomp \ |
| 44 | 45 |
build-aux/install-sh \ |
| 45 | 46 |
build-aux/ltmain.sh \ |
| 46 | 47 |
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 |
|
|
| 48 |
doc/doxygen.log |
|
| 54 | 49 |
|
| 55 | 50 |
mrproper: |
| 56 | 51 |
$(MAKE) $(AM_MAKEFLAGS) maintainer-clean |
| 57 | 52 |
-rm -f $(MRPROPERFILES) |
| 58 | 53 |
|
| 59 | 54 |
dist-bz2: dist |
| 60 | 55 |
zcat $(PACKAGE)-$(VERSION).tar.gz | \ |
| 61 | 56 |
bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2 |
| 1 | 1 |
EXTRA_DIST += \ |
| 2 |
demo/ |
|
| 2 |
demo/CMakeLists.txt |
|
| 3 | 3 |
|
| 4 | 4 |
if WANT_DEMO |
| 5 | 5 |
|
| 6 | 6 |
noinst_PROGRAMS += \ |
| 7 | 7 |
demo/arg_parser_demo \ |
| 8 | 8 |
demo/graph_to_eps_demo \ |
| 9 | 9 |
demo/lgf_demo |
| 10 | 10 |
|
| 11 | 11 |
endif WANT_DEMO |
| 12 | 12 |
|
| 13 | 13 |
demo_arg_parser_demo_SOURCES = demo/arg_parser_demo.cc |
| 14 | 14 |
demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc |
| 15 | 15 |
demo_lgf_demo_SOURCES = demo/lgf_demo.cc |
| 16 |
0 comments (0 inline)