(ltlgspn_rg_LDADD, ltlgspn_srg_LDADD, ltlgspn_rg_SOURCES) (ltlgspn_srg_SOURCES): New variables. (check_PROGRAMS): Add ltlgspn-rg and ltlgspn-srg. * iface/gspn/Makefile.am (gspn_HEADERS, gspndir): Install gspn.hh.
50 lines
1.1 KiB
Makefile
50 lines
1.1 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 \
|
|
$(TESTS)
|
|
|
|
TESTS = \
|
|
simple.test \
|
|
dcswave.test \
|
|
dcswaveltl.test
|
|
|
|
# Each test case depends on defs.
|
|
check_SCRIPTS = defs
|
|
|
|
distclean-local:
|
|
-rm -rf testSubDir
|