select algorithms, not #defines. * iface/gspn/Makefile.am (check_PROGRAMS): Remove eltlgspn-srg, efmgspn-srg, fmgspn-rg, and fmgspn-srg and their associated source variables. These are all replaced by ltlgspn-rg and ltlgspn-srg. * iface/gspn/dcswavefm.test, iface/gspn/dcswaveltl.test, iface/gspn/dcswaveeltl.test, iface/gspn/udcsefm.test, iface/gspn/udcseltl.test, iface/gspn/udcsfm.test, iface/gspn/udcsltl.test: Adjust calls to ltlgspn-srg.
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/src $(BUDDY_CPPFLAGS) $(LIBGSPN_CPPFLAGS)
|
|
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
|
|
|
gspndir = $(pkgincludedir)/gspn
|
|
|
|
gspn_HEADERS = \
|
|
gspn.hh
|
|
|
|
lib_LTLIBRARIES = libspotgspn.la
|
|
libspotgspn_la_LIBADD = $(top_builddir)/src/libspot.la
|
|
libspotgspn_la_SOURCES = \
|
|
gspn.cc
|
|
|
|
check_PROGRAMS = \
|
|
dottygspn-rg \
|
|
dottygspn-srg \
|
|
ltlgspn-rg \
|
|
ltlgspn-srg
|
|
|
|
dottygspn_rg_SOURCES = dottygspn.cc
|
|
dottygspn_rg_LDADD = libspotgspn.la $(LIBGSPNRG_LDFLAGS)
|
|
|
|
dottygspn_srg_SOURCES = dottygspn.cc
|
|
dottygspn_srg_LDADD = libspotgspn.la $(LIBGSPNSRG_LDFLAGS)
|
|
|
|
ltlgspn_rg_SOURCES = ltlgspn.cc
|
|
ltlgspn_rg_LDADD = libspotgspn.la $(LIBGSPNRG_LDFLAGS)
|
|
|
|
ltlgspn_srg_SOURCES = ltlgspn.cc
|
|
ltlgspn_srg_LDADD = libspotgspn.la $(LIBGSPNSRG_LDFLAGS)
|
|
|
|
EXTRA_DIST = \
|
|
examples/DCSwave/DCSWave.def \
|
|
examples/DCSwave/DCSWave.net \
|
|
examples/DCSwave/DCSWave.tobs \
|
|
examples/simple/simple.def \
|
|
examples/simple/simple.net \
|
|
examples/simple/simple.tobs \
|
|
examples/udcs/udcs.def \
|
|
examples/udcs/udcs.net \
|
|
examples/udcs/udcs.tobs \
|
|
$(TESTS)
|
|
|
|
TESTS = \
|
|
simple.test \
|
|
dcswave.test \
|
|
dcswaveltl.test \
|
|
dcswavefm.test \
|
|
dcswaveeltl.test \
|
|
udcsltl.test \
|
|
udcseltl.test \
|
|
udcsfm.test \
|
|
udcsefm.test
|
|
|
|
# Each test case depends on defs.
|
|
check_SCRIPTS = defs
|
|
|
|
distclean-local:
|
|
-rm -rf testSubDir
|