2017-04-30 05:34:37 -06:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
-I$(top_srcdir)/lib/gtest/include \
|
|
|
|
$(GTEST_CPPFLAGS)
|
|
|
|
AM_CXXFLAGS = -Wall $(GTEST_CXXFLAGS)
|
|
|
|
AM_LDFLAGS = $(GTEST_LDFLAGS)
|
|
|
|
LDADD = \
|
2017-05-10 04:00:59 -06:00
|
|
|
$(GTEST_LIBS) \
|
|
|
|
$(top_builddir)/lib/gtest/lib/libgtest_main.la \
|
|
|
|
$(top_builddir)/lib/gtest/lib/libgtest.la
|
2017-04-30 05:34:37 -06:00
|
|
|
|
|
|
|
# Programs to be built by "make check"
|
|
|
|
check_PROGRAMS = \
|
2017-10-09 04:51:07 -06:00
|
|
|
test_dummy \
|
|
|
|
test_BlockSpecial \
|
|
|
|
test_PasswordRAMStore \
|
2017-05-12 15:00:08 -06:00
|
|
|
test_PipeCapture
|
2017-04-30 05:34:37 -06:00
|
|
|
|
|
|
|
# Test cases to be run by "make check"
|
|
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
|
2017-05-01 13:37:16 -06:00
|
|
|
test_dummy_SOURCES = test_dummy.cc
|
2017-07-23 04:08:39 -06:00
|
|
|
|
|
|
|
test_BlockSpecial_SOURCES = test_BlockSpecial.cc
|
|
|
|
test_BlockSpecial_LDADD = \
|
|
|
|
$(top_builddir)/src/BlockSpecial.$(OBJEXT) \
|
|
|
|
$(LDADD)
|
|
|
|
|
2017-10-09 04:51:07 -06:00
|
|
|
test_PasswordRAMStore_SOURCES = test_PasswordRAMStore.cc
|
|
|
|
test_PasswordRAMStore_LDADD = \
|
|
|
|
$(top_builddir)/src/PasswordRAMStore.$(OBJEXT) \
|
|
|
|
$(LDADD)
|
|
|
|
|
2017-07-23 04:08:39 -06:00
|
|
|
test_PipeCapture_SOURCES = test_PipeCapture.cc
|
|
|
|
test_PipeCapture_LDADD = \
|
|
|
|
$(top_builddir)/src/PipeCapture.$(OBJEXT) \
|
2019-01-20 03:24:44 -07:00
|
|
|
$(LDADD)
|