mirror of
https://github.com/curl/curl.git
synced 2026-04-11 12:01:42 +08:00
1. 'make clean' in the root dir now also invokes 'make clean' in the tests subdir so that it cleans up better recursively. The Makefile.am does not list 'tests' as a normal subdir to avoid building that directory for a normal make invoke. 2. 'make clean' in the tests/libtest and tests/unit directories now *explicitly* remove the unity build executables even if this is not a unit build. This, because those files may be leftovers from previous builds and such leftovers can otherwise linger around and since 'runtests.pl' dynamically acts differently based on the mere *presence* of those files, they can keep you fooled for a while until you realize... Closes #16986
93 lines
2.9 KiB
Makefile
93 lines
2.9 KiB
Makefile
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
###########################################################################
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
# Specify our include paths here, and do it relative to $(top_srcdir) and
|
|
# $(top_builddir), to ensure that these paths which belong to the library
|
|
# being currently built and tested are searched before the library which
|
|
# might possibly already be installed in the system.
|
|
#
|
|
# $(top_srcdir)/include is for libcurl's external include files
|
|
# $(top_builddir)/lib is for libcurl's generated lib/curl_config.h file
|
|
# $(top_srcdir)/lib for libcurl's lib/curl_setup.h and other "borrowed" files
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
|
-I$(top_builddir)/lib \
|
|
-I$(top_srcdir)/lib \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/tests/libtest \
|
|
-I$(top_srcdir)/tests/unit
|
|
|
|
EXTRA_DIST = CMakeLists.txt README.md
|
|
|
|
CFLAGS += @CURL_CFLAG_EXTRAS@
|
|
|
|
# Prevent LIBS from being used for all link targets
|
|
LIBS = $(BLANK_AT_MAKETIME)
|
|
|
|
LDADD = $(top_builddir)/src/libcurltool.la \
|
|
$(top_builddir)/lib/libcurlu.la \
|
|
@LIBCURL_PC_LDFLAGS_PRIVATE@ @LIBCURL_PC_LIBS_PRIVATE@
|
|
|
|
AM_CPPFLAGS += -DCURL_STATICLIB -DUNITTESTS
|
|
if DEBUGBUILD
|
|
AM_CPPFLAGS += -DDEBUGBUILD
|
|
endif
|
|
if CURLDEBUG
|
|
AM_CPPFLAGS += -DCURLDEBUG
|
|
endif
|
|
|
|
BUNDLE=units
|
|
|
|
if BUILD_UNITTESTS
|
|
if USE_TEST_BUNDLES
|
|
unit_bundle.c: $(top_srcdir)/tests/mk-bundle.pl Makefile.inc
|
|
@PERL@ $(top_srcdir)/tests/mk-bundle.pl $(srcdir) > unit_bundle.c
|
|
|
|
noinst_PROGRAMS = $(BUNDLE)
|
|
nodist_units_SOURCES = unit_bundle.c
|
|
CLEANFILES = unit_bundle.c
|
|
else
|
|
# Makefile.inc provides neat definitions
|
|
include Makefile.inc
|
|
noinst_PROGRAMS = $(UNITPROGS)
|
|
endif
|
|
else
|
|
noinst_PROGRAMS =
|
|
endif
|
|
|
|
CHECKSRC = $(CS_$(V))
|
|
CS_0 = @echo " RUN " $@;
|
|
CS_1 =
|
|
CS_ = $(CS_0)
|
|
|
|
# ignore generated C files since they play by slightly different rules!
|
|
checksrc:
|
|
$(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) \
|
|
-W$(srcdir)/unit_bundle.c \
|
|
$(srcdir)/*.[ch])
|
|
|
|
clean-local:
|
|
rm -f $(BUNDLE)
|