* src/bin/ltlgrind.cc: New file, command-line tool to get mutations of a formula. * src/bin/Makefile.am: Add it. * src/ltlvisit/mutation.hh, src/ltlvisit/mutation.cc: New files providing the get_mutations function. * src/ltlvisit/Makefile.am: Add it. * src/ltltest/ltlgrind.test: Test it. * src/ltltest/Makefile.am: Add it. * src/bin/man/ltlgrind.x: Document it. * src/bin/man/Makefile.am: Add it. * doc/org/ltlgrind.org: Document it. * doc/org/tools.org: Add link to ltlgrind documentation page.
73 lines
1.8 KiB
Makefile
73 lines
1.8 KiB
Makefile
## -*- coding: utf-8 -*-
|
|
## Copyright (C) 2010, 2011, 2012, 2013, 2014 Laboratoire de Recherche
|
|
## et Developpement de l'Epita (LRDE).
|
|
## Copyright (C) 2004, 2005, 2006 Laboratoire d'Informatique de Paris
|
|
## 6 (LIP6), département Systèmes Répartis Coopératifs (SRC),
|
|
## Université Pierre et Marie Curie.
|
|
##
|
|
## This file is part of Spot, a model checking library.
|
|
##
|
|
## Spot is free software; you can redistribute it and/or modify it
|
|
## under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
## License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
AM_CPPFLAGS = -I$(srcdir)/.. -I.. $(BUDDY_CPPFLAGS)
|
|
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
|
|
|
ltlvisitdir = $(pkgincludedir)/ltlvisit
|
|
|
|
ltlvisit_HEADERS = \
|
|
apcollect.hh \
|
|
contain.hh \
|
|
clone.hh \
|
|
dotty.hh \
|
|
dump.hh \
|
|
lbt.hh \
|
|
length.hh \
|
|
lunabbrev.hh \
|
|
mutation.hh \
|
|
nenoform.hh \
|
|
postfix.hh \
|
|
randomltl.hh \
|
|
relabel.hh \
|
|
remove_x.hh \
|
|
simpfg.hh \
|
|
simplify.hh \
|
|
snf.hh \
|
|
tostring.hh \
|
|
tunabbrev.hh \
|
|
wmunabbrev.hh
|
|
|
|
noinst_LTLIBRARIES = libltlvisit.la
|
|
libltlvisit_la_SOURCES = \
|
|
apcollect.cc \
|
|
contain.cc \
|
|
clone.cc \
|
|
dotty.cc \
|
|
dump.cc \
|
|
lbt.cc \
|
|
length.cc \
|
|
lunabbrev.cc \
|
|
mark.cc \
|
|
mark.hh \
|
|
mutation.cc \
|
|
nenoform.cc \
|
|
postfix.cc \
|
|
randomltl.cc \
|
|
relabel.cc \
|
|
remove_x.cc \
|
|
simpfg.cc \
|
|
simplify.cc \
|
|
snf.cc \
|
|
tostring.cc \
|
|
tunabbrev.cc \
|
|
wmunabbrev.cc
|