0
7
0
2
10
6
2
1
14
13
12
| ... | ... |
@@ -29,4 +29,4 @@ |
| 29 | 29 |
This command compiles the non-template part of LEMON into libemon.a |
| 30 |
file. It also compiles the programs in the tools and demo subdirectories |
|
| 31 |
when enabled. |
|
| 30 |
file. It also compiles the programs in the tools subdirectory by |
|
| 31 |
default. |
|
| 32 | 32 |
|
| ... | ... |
@@ -77,10 +77,2 @@ |
| 77 | 77 |
|
| 78 |
--enable-demo |
|
| 79 |
|
|
| 80 |
Build the examples in the demo subdirectory. |
|
| 81 |
|
|
| 82 |
--disable-demo |
|
| 83 |
|
|
| 84 |
Do not build the examples in the demo subdirectory (default). |
|
| 85 |
|
|
| 86 | 78 |
--enable-tools |
| ... | ... |
@@ -41,5 +41,9 @@ |
| 41 | 41 |
include doc/Makefile.am |
| 42 |
include demo/Makefile.am |
|
| 43 | 42 |
include tools/Makefile.am |
| 44 | 43 |
|
| 44 |
DIST_SUBDIRS = demo |
|
| 45 |
|
|
| 46 |
demo: |
|
| 47 |
$(MAKE) $(AM_MAKEFLAGS) -C demo |
|
| 48 |
|
|
| 45 | 49 |
MRPROPERFILES = \ |
| ... | ... |
@@ -70,2 +74,2 @@ |
| 70 | 74 |
|
| 71 |
.PHONY: mrproper dist-bz2 distcheck-bz2 |
|
| 75 |
.PHONY: demo mrproper dist-bz2 distcheck-bz2 |
| ... | ... |
@@ -66,15 +66,2 @@ |
| 66 | 66 |
|
| 67 |
dnl Disable/enable building the demo programs. |
|
| 68 |
AC_ARG_ENABLE([demo], |
|
| 69 |
AS_HELP_STRING([--enable-demo], [build the demo programs]) |
|
| 70 |
AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]), |
|
| 71 |
[], [enable_demo=no]) |
|
| 72 |
AC_MSG_CHECKING([whether to build the demo programs]) |
|
| 73 |
if test x"$enable_demo" != x"no"; then |
|
| 74 |
AC_MSG_RESULT([yes]) |
|
| 75 |
else |
|
| 76 |
AC_MSG_RESULT([no]) |
|
| 77 |
fi |
|
| 78 |
AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"]) |
|
| 79 |
|
|
| 80 | 67 |
dnl Disable/enable building the binary tools. |
| ... | ... |
@@ -112,2 +99,3 @@ |
| 112 | 99 |
Makefile |
| 100 |
demo/Makefile |
|
| 113 | 101 |
cmake/version.cmake |
| ... | ... |
@@ -134,3 +122,2 @@ |
| 134 | 122 |
echo |
| 135 |
echo Build demo programs........... : $enable_demo |
|
| 136 | 123 |
echo Build additional tools........ : $enable_tools |
| 1 |
EXTRA_DIST += \ |
|
| 2 |
demo/CMakeLists.txt \ |
|
| 3 |
|
|
| 1 |
AM_CXXFLAGS = $(WARNINGCXXFLAGS) |
|
| 4 | 2 |
|
| 5 |
|
|
| 3 |
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) |
|
| 4 |
LDADD = $(top_builddir)/lemon/libemon.la |
|
| 6 | 5 |
|
| 7 |
noinst_PROGRAMS += \ |
|
| 8 |
demo/arg_parser_demo \ |
|
| 9 |
demo/graph_to_eps_demo \ |
|
| 10 |
demo/lgf_demo |
|
| 6 |
EXTRA_DIST = \ |
|
| 7 |
CMakeLists.txt \ |
|
| 8 |
digraph.lgf |
|
| 11 | 9 |
|
| 12 |
|
|
| 10 |
noinst_PROGRAMS = \ |
|
| 11 |
arg_parser_demo \ |
|
| 12 |
graph_to_eps_demo \ |
|
| 13 |
lgf_demo |
|
| 13 | 14 |
|
| 14 |
demo_arg_parser_demo_SOURCES = demo/arg_parser_demo.cc |
|
| 15 |
demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc |
|
| 16 |
|
|
| 15 |
arg_parser_demo_SOURCES = arg_parser_demo.cc |
|
| 16 |
graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc |
|
| 17 |
lgf_demo_SOURCES = lgf_demo.cc |
0 comments (0 inline)