mirror of https://github.com/c-ares/c-ares.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.4 KiB
44 lines
1.4 KiB
# Where to find the c-ares source code; needed because the tests use library-internal headers |
|
ARES_SRC_DIR = .. |
|
# Where to find the built c-ares static library |
|
ARES_BLD_DIR = .. |
|
AUTOMAKE_OPTIONS = foreign |
|
ACLOCAL_AMFLAGS = -I ../m4 |
|
GMOCK_DIR = gmock-1.8.0 |
|
# Note use of -isystem to force use of local gMock/gTest even if there's an installed version. |
|
CPPFLAGS += -I$(ARES_SRC_DIR) -isystem $(GMOCK_DIR) |
|
CXXFLAGS += -Wall $(PTHREAD_CFLAGS) |
|
|
|
# Makefile.inc provides the various *SOURCES and *HEADERS defines |
|
include Makefile.inc |
|
|
|
TESTS = arestest fuzzcheck.sh |
|
|
|
noinst_PROGRAMS = arestest aresfuzz aresfuzzname dnsdump |
|
EXTRA_DIST = fuzzcheck.sh CMakeLists.txt |
|
arestest_SOURCES = $(TESTSOURCES) $(TESTHEADERS) |
|
arestest_LDADD = libgmock.la $(ARES_BLD_DIR)/libcares.la $(PTHREAD_LIBS) |
|
|
|
# Not interested in coverage of test code, but linking the test binary needs the coverage option |
|
@CODE_COVERAGE_RULES@ |
|
arestest_LDFLAGS = $(CODE_COVERAGE_LDFLAGS) |
|
|
|
noinst_LTLIBRARIES = libgmock.la |
|
|
|
libgmock_la_SOURCES = \ |
|
$(GMOCK_DIR)/gmock-gtest-all.cc \ |
|
$(GMOCK_DIR)/gmock/gmock.h \ |
|
$(GMOCK_DIR)/gtest/gtest.h |
|
|
|
libgmock_la_CPPFLAGS = -isystem $(GMOCK_DIR) |
|
|
|
aresfuzz_SOURCES = $(FUZZSOURCES) |
|
aresfuzz_LDADD = $(ARES_BLD_DIR)/libcares.la |
|
|
|
aresfuzzname_SOURCES = $(FUZZNAMESOURCES) |
|
aresfuzzname_LDADD = $(ARES_BLD_DIR)/libcares.la |
|
|
|
dnsdump_SOURCES = $(DUMPSOURCES) |
|
dnsdump_LDADD = $(ARES_BLD_DIR)/libcares.la |
|
|
|
test: check
|
|
|