39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/lib/gtest/include \
|
|
$(GTEST_CPPFLAGS)
|
|
AM_CXXFLAGS = -Wall $(GTEST_CXXFLAGS)
|
|
AM_LDFLAGS = $(GTEST_LDFLAGS)
|
|
LDADD = \
|
|
$(GTEST_LIBS) \
|
|
$(top_builddir)/lib/gtest/lib/libgtest_main.la \
|
|
$(top_builddir)/lib/gtest/lib/libgtest.la
|
|
|
|
# Programs to be built by "make check"
|
|
check_PROGRAMS = \
|
|
test_dummy \
|
|
test_BlockSpecial \
|
|
test_PasswordRAMStore \
|
|
test_PipeCapture
|
|
|
|
# Test cases to be run by "make check"
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
test_dummy_SOURCES = test_dummy.cc
|
|
|
|
test_BlockSpecial_SOURCES = test_BlockSpecial.cc
|
|
test_BlockSpecial_LDADD = \
|
|
$(top_builddir)/src/BlockSpecial.$(OBJEXT) \
|
|
$(LDADD)
|
|
|
|
test_PasswordRAMStore_SOURCES = test_PasswordRAMStore.cc
|
|
test_PasswordRAMStore_LDADD = \
|
|
$(top_builddir)/src/PasswordRAMStore.$(OBJEXT) \
|
|
$(LDADD)
|
|
|
|
test_PipeCapture_SOURCES = test_PipeCapture.cc
|
|
test_PipeCapture_LDADD = \
|
|
$(top_builddir)/src/PipeCapture.$(OBJEXT) \
|
|
$(GTEST_LIBS) \
|
|
$(top_builddir)/lib/gtest/lib/libgtest.la
|