* src/ltlvisit/Makefile.am (libltlvisit_a_SOURCES): Add them. * src/ltltest/equals.cc (main) [NENOFORM]: Call negative_normal_form. * src/ltltest/nenoform.test, src/ltltest/tunenoform.test: New files. * src/ltltest/Makefile.am (check_PROGRAMS): Add nenoform and tunenoform. (nenoform_SOURCES, nenoform_CPPFLAGS, tunenoform_SOURCES, tunenoform_CPPFLAGS): New variables. (TESTS): Add nenoform.test and tunenoform.test.
43 lines
1,008 B
Makefile
43 lines
1,008 B
Makefile
AM_CPPFLAGS = -I$(srcdir)/..
|
|
LDADD = ../ltlparse/libltlparse.a \
|
|
../ltlvisit/libltlvisit.a \
|
|
../ltlast/libltlast.a
|
|
|
|
check_SCRIPTS = defs
|
|
|
|
# Keep this sorted alphabetically.
|
|
check_PROGRAMS = \
|
|
equals \
|
|
ltl2dot \
|
|
ltl2text \
|
|
lunabbrev \
|
|
nenoform \
|
|
tunabbrev \
|
|
tunenoform
|
|
|
|
ltl2dot_SOURCES = readltl.cc
|
|
ltl2dot_CPPFLAGS = $(AM_CPPFLAGS) -DDOTTY
|
|
ltl2text_SOURCES = readltl.cc
|
|
equals_SOURCES = equals.cc
|
|
lunabbrev_SOURCES = equals.cc
|
|
lunabbrev_CPPFLAGS = $(AM_CPPFLAGS) -DLUNABBREV
|
|
tunabbrev_SOURCES = equals.cc
|
|
tunabbrev_CPPFLAGS = $(AM_CPPFLAGS) -DTUNABBREV
|
|
nenoform_SOURCES = equals.cc
|
|
nenoform_CPPFLAGS = $(AM_CPPFLAGS) -DNENOFORM
|
|
tunenoform_SOURCES = equals.cc
|
|
tunenoform_CPPFLAGS = $(AM_CPPFLAGS) -DNENOFORM -DTUNABBREV
|
|
|
|
EXTRA_DIST = $(TESTS)
|
|
|
|
# Ordered by strength of the test. Test basic features first.
|
|
TESTS = \
|
|
parse.test \
|
|
parseerr.test \
|
|
equals.test \
|
|
lunabbrev.test \
|
|
tunabbrev.test \
|
|
nenoform.test \
|
|
tunenoform.test
|
|
|
|
CLEANFILES = stdout expect parse.dot
|