Patrick Venture | 1ddb94f | 2019-03-13 16:01:35 -0700 | [diff] [blame] | 1 | AM_CPPFLAGS = \ |
| 2 | -I$(top_srcdir)/ \ |
| 3 | $(GTEST_CFLAGS) \ |
Patrick Venture | 6667a64 | 2019-03-13 16:39:30 -0700 | [diff] [blame] | 4 | $(GMOCK_CFLAGS) \ |
| 5 | $(CODE_COVERAGE_CPPFLAGS) |
| 6 | AM_CFLAGS = $(CODE_COVERAGE_CFLAGS) |
| 7 | AM_CXXFLAGS = $(CODE_COVERAGE_CXXFLAGS) |
Patrick Venture | 1ddb94f | 2019-03-13 16:01:35 -0700 | [diff] [blame] | 8 | AM_LDFLAGS = \ |
| 9 | $(GTEST_LIBS) \ |
| 10 | $(GMOCK_LIBS) \ |
| 11 | -lgmock_main \ |
Patrick Venture | 6667a64 | 2019-03-13 16:39:30 -0700 | [diff] [blame] | 12 | $(OESDK_TESTCASE_FLAGS) \ |
| 13 | $(CODE_COVERAGE_LIBS) |
Patrick Venture | 848b938 | 2019-03-13 15:48:23 -0700 | [diff] [blame] | 14 | |
| 15 | check_PROGRAMS = |
| 16 | TESTS = $(check_PROGRAMS) |
Patrick Venture | 1ddb94f | 2019-03-13 16:01:35 -0700 | [diff] [blame] | 17 | |
Patrick Venture | f085d91 | 2019-03-15 08:50:00 -0700 | [diff] [blame^] | 18 | check_PROGRAMS += handler_unittest |
| 19 | handler_unittest_SOURCES = handler_unittest.cpp |
| 20 | handler_unittest_LDADD = $(top_builddir)/libsyscmds_common.la |
| 21 | |
Patrick Venture | 1ddb94f | 2019-03-13 16:01:35 -0700 | [diff] [blame] | 22 | check_PROGRAMS += eth_unittest |
| 23 | eth_unittest_SOURCES = eth_unittest.cpp |
| 24 | eth_unittest_LDADD = $(top_builddir)/libsyscmds_common.la |