* src/Makefile.am (SUBDIRS): Add tgbaalgos.
(libspot_la_LIBADD): Add tgba/libtgbaalgos. * src/tgbaalgos/Makefile.am: New file. * configure.ac: Output src/tgbaalgos/Makefile.
This commit is contained in:
parent
16c6219988
commit
0a698131e6
5 changed files with 21 additions and 2 deletions
|
|
@ -1,5 +1,10 @@
|
||||||
2003-05-26 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
2003-05-26 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/Makefile.am (SUBDIRS): Add tgbaalgos.
|
||||||
|
(libspot_la_LIBADD): Add tgba/libtgbaalgos.
|
||||||
|
* src/tgbaalgos/Makefile.am: New file.
|
||||||
|
* configure.ac: Output src/tgbaalgos/Makefile.
|
||||||
|
|
||||||
* src/tgba/bddprint.hh, src/tgba/bddprint.cc: New files.
|
* src/tgba/bddprint.hh, src/tgba/bddprint.cc: New files.
|
||||||
* src/tgba/Makefile.am (libtgba_la_SOURCES): Add them.
|
* src/tgba/Makefile.am (libtgba_la_SOURCES): Add them.
|
||||||
* src/tgba/public.hh: Include bddprint.hh.
|
* src/tgba/public.hh: Include bddprint.hh.
|
||||||
|
|
@ -20,6 +25,7 @@
|
||||||
|
|
||||||
* src/Makefile.am (SUBDIRS): Add tgba.
|
* src/Makefile.am (SUBDIRS): Add tgba.
|
||||||
(libspot_la_LIBADD): Add tgba/libtgba.la.
|
(libspot_la_LIBADD): Add tgba/libtgba.la.
|
||||||
|
* configure.ac: Output src/tgba/Makefile.
|
||||||
* src/tgba/Makefile.am, src/tgba/bddfactory.cc,
|
* src/tgba/Makefile.am, src/tgba/bddfactory.cc,
|
||||||
src/tgba/bddfactory.hh, src/tgba/dictunion.cc,
|
src/tgba/bddfactory.hh, src/tgba/dictunion.cc,
|
||||||
src/tgba/dictunion.hh, src/tgba/ltl2tgba.cc, src/tgba/ltl2tgba.hh,
|
src/tgba/dictunion.hh, src/tgba/ltl2tgba.cc, src/tgba/ltl2tgba.hh,
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,7 @@ AC_CONFIG_FILES([
|
||||||
src/ltltest/defs
|
src/ltltest/defs
|
||||||
src/ltlvisit/Makefile
|
src/ltlvisit/Makefile
|
||||||
src/tgba/Makefile
|
src/tgba/Makefile
|
||||||
|
src/tgbaalgos/Makefile
|
||||||
src/misc/Makefile
|
src/misc/Makefile
|
||||||
wrap/Makefile
|
wrap/Makefile
|
||||||
])
|
])
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
AUTOMAKE_OPTIONS = subdir-objects
|
AUTOMAKE_OPTIONS = subdir-objects
|
||||||
|
|
||||||
# List directories in the order they must be built.
|
# List directories in the order they must be built.
|
||||||
SUBDIRS = misc ltlenv ltlast ltlvisit ltlparse ltltest tgba
|
SUBDIRS = misc ltlenv ltlast ltlvisit ltlparse ltltest tgba tgbaalgos
|
||||||
|
|
||||||
lib_LTLIBRARIES = libspot.la
|
lib_LTLIBRARIES = libspot.la
|
||||||
libspot_la_SOURCES =
|
libspot_la_SOURCES =
|
||||||
|
|
@ -10,4 +10,5 @@ libspot_la_LIBADD = \
|
||||||
ltlparse/libltlparse.la \
|
ltlparse/libltlparse.la \
|
||||||
ltlvisit/libltlvisit.la \
|
ltlvisit/libltlvisit.la \
|
||||||
ltlast/libltlast.la \
|
ltlast/libltlast.la \
|
||||||
tgba/libtgba.la
|
tgba/libtgba.la \
|
||||||
|
tgbaalgos/libtgbaalgos.la
|
||||||
|
|
|
||||||
6
src/tgbaalgos/.cvsignore
Normal file
6
src/tgbaalgos/.cvsignore
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
.deps
|
||||||
|
.libs
|
||||||
|
*.lo
|
||||||
|
*.la
|
||||||
|
Makefile
|
||||||
|
Makefile.in
|
||||||
5
src/tgbaalgos/Makefile.am
Normal file
5
src/tgbaalgos/Makefile.am
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
AM_CPPFLAGS = -I$(srcdir)/..
|
||||||
|
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
||||||
|
|
||||||
|
noinst_LTLIBRARIES = libtgbaalgos.la
|
||||||
|
libtgbaalgos_la_SOURCES =
|
||||||
Loading…
Add table
Add a link
Reference in a new issue