* configure.ac: Output src/ltlenv/Makefile.

* src/ltlenv/Makefile.am, src/ltlenv/defaultenv.cc,
src/ltlenv/defaultenv.hh, src/ltlenv/environment.hh: New files.
* src/ltlparse/public.hh (parse): Take an environment as third
argument.
* src/ltlparse/ltlparse.yy (ATOMIC_PROP, parse): Require the
atomic proposition via the environment.
* src/ltltest/readltl.cc (main): Adjust the call to parse().
* src/ltltest/Makefile.am (LDADD): Add ../ltlenv/libltlenv.a.
This commit is contained in:
Alexandre Duret-Lutz 2003-04-17 15:09:49 +00:00
parent ae7fdeba59
commit a30a0638b9
12 changed files with 141 additions and 7 deletions

8
src/ltlenv/Makefile.am Normal file
View file

@ -0,0 +1,8 @@
AM_CPPFLAGS = -I$(srcdir)/..
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
lib_LIBRARIES = libltlenv.a
libltlenv_a_SOURCES = \
defaultenv.cc \
defaultenv.hh \
environment.hh