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.
70 lines
2.6 KiB
70 lines
2.6 KiB
############################################################# |
|
# |
|
# Copyright (C) the Massachusetts Institute of Technology. |
|
# Copyright (C) Daniel Stenberg |
|
# |
|
# Permission to use, copy, modify, and distribute this |
|
# software and its documentation for any purpose and without |
|
# fee is hereby granted, provided that the above copyright |
|
# notice appear in all copies and that both that copyright |
|
# notice and this permission notice appear in supporting |
|
# documentation, and that the name of M.I.T. not be used in |
|
# advertising or publicity pertaining to distribution of the |
|
# software without specific, written prior permission. |
|
# M.I.T. makes no representations about the suitability of |
|
# this software for any purpose. It is provided "as is" |
|
# without express or implied warranty. |
|
# |
|
# SPDX-License-Identifier: MIT |
|
# |
|
############################################################# |
|
|
|
ARES_BLD_DIR = $(top_builddir)/.. |
|
ARES_SRC_DIR = $(top_srcdir)/.. |
|
|
|
AUTOMAKE_OPTIONS = foreign subdir-objects nostdinc 1.9.6 |
|
ACLOCAL_AMFLAGS = -I ../m4 --install |
|
|
|
# Note use of -isystem to force use of local gMock/gTest even if there's an installed version. |
|
CPPFLAGS += -I$(ARES_BLD_DIR)/include \ |
|
-I$(ARES_BLD_DIR)/src/lib \ |
|
-I$(ARES_SRC_DIR)/include \ |
|
-I$(ARES_SRC_DIR)/src/lib \ |
|
-I$(top_builddir) \ |
|
-isystem $(srcdir)/gmock-1.11.0 |
|
CXXFLAGS += -Wall $(PTHREAD_CFLAGS) |
|
|
|
# Makefile.inc provides the various *SOURCES and *HEADERS defines |
|
include Makefile.inc |
|
|
|
TESTS = arestest fuzzcheck.sh |
|
|
|
noinst_LTLIBRARIES = libgmock.la |
|
|
|
libgmock_la_SOURCES = \ |
|
gmock-1.11.0/gmock-gtest-all.cc \ |
|
gmock-1.11.0/gmock/gmock.h \ |
|
gmock-1.11.0/gtest/gtest.h |
|
|
|
libgmock_la_CPPFLAGS = -isystem $(srcdir)/gmock-1.11.0 |
|
|
|
|
|
noinst_PROGRAMS = arestest aresfuzz aresfuzzname dnsdump |
|
EXTRA_DIST = fuzzcheck.sh CMakeLists.txt Makefile.m32 Makefile.msvc README.md buildconf $(srcdir)/fuzzinput/* $(srcdir)/fuzznames/* |
|
arestest_SOURCES = $(TESTSOURCES) $(TESTHEADERS) |
|
|
|
# Not interested in coverage of test code, but linking the test binary needs the coverage option |
|
arestest_LDADD = libgmock.la $(ARES_BLD_DIR)/src/lib/libcares.la $(PTHREAD_LIBS) $(CODE_COVERAGE_LIBS) |
|
|
|
include $(top_srcdir)/aminclude_static.am |
|
|
|
aresfuzz_SOURCES = $(FUZZSOURCES) |
|
aresfuzz_LDADD = $(ARES_BLD_DIR)/src/lib/libcares.la $(PTHREAD_LIBS) $(CODE_COVERAGE_LIBS) |
|
|
|
aresfuzzname_SOURCES = $(FUZZNAMESOURCES) |
|
aresfuzzname_LDADD = $(ARES_BLD_DIR)/src/lib/libcares.la $(PTHREAD_LIBS) $(CODE_COVERAGE_LIBS) |
|
|
|
dnsdump_SOURCES = $(DUMPSOURCES) |
|
dnsdump_LDADD = $(ARES_BLD_DIR)/src/lib/libcares.la $(PTHREAD_LIBS) $(CODE_COVERAGE_LIBS) |
|
|
|
test: check
|
|
|