f796e5ca6f
Moved all globals accessed outside of main.c to util.c. Library must be initialized by calling ltl2ba_init(). Fixed bug: appending never claim to a file
26 lines
599 B
Makefile
26 lines
599 B
Makefile
ACLOCAL_AMFLAGS = -I m4
|
|
AM_CPPFLAGS = -DNXT
|
|
|
|
bin_PROGRAMS = ltl2ba
|
|
noinst_LTLIBRARIES = libltl2ba.la
|
|
|
|
ltl2ba_SOURCES = main.c
|
|
ltl2ba_SOURCES += ltl2ba.h
|
|
ltl2ba_LDADD = libltl2ba.la
|
|
|
|
libltl2ba_la_SOURCES = parse.c
|
|
libltl2ba_la_SOURCES += lex.c
|
|
libltl2ba_la_SOURCES += trans.c
|
|
libltl2ba_la_SOURCES += buchi.c
|
|
libltl2ba_la_SOURCES += set.c
|
|
libltl2ba_la_SOURCES += mem.c
|
|
libltl2ba_la_SOURCES += rewrt.c
|
|
libltl2ba_la_SOURCES += cache.c
|
|
libltl2ba_la_SOURCES += alternating.c
|
|
libltl2ba_la_SOURCES += generalized.c
|
|
libltl2ba_la_SOURCES += util.c
|
|
libltl2ba_la_SOURCES += ltl2ba.h
|
|
|
|
# make
|
|
.DELETE_ON_ERROR:
|