2004-01-13 16:57:24 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
1999-12-29 22:20:26 +08:00
|
|
|
#
|
2023-01-02 20:51:48 +08:00
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-01-13 16:57:24 +08:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2004-01-13 16:57:24 +08:00
|
|
|
#
|
|
|
|
# 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.
|
1999-12-29 22:20:26 +08:00
|
|
|
#
|
2004-01-13 16:57:24 +08:00
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2004-01-13 16:57:24 +08:00
|
|
|
###########################################################################
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2002-02-25 22:08:18 +08:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2008-07-30 11:10:03 +08:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
2020-03-13 00:18:40 +08:00
|
|
|
CMAKE_DIST = \
|
|
|
|
CMake/cmake_uninstall.cmake.in \
|
|
|
|
CMake/CMakeConfigurableFile.in \
|
|
|
|
CMake/curl-config.cmake.in \
|
|
|
|
CMake/CurlSymbolHiding.cmake \
|
|
|
|
CMake/CurlTests.c \
|
|
|
|
CMake/FindBearSSL.cmake \
|
2020-08-21 01:41:39 +08:00
|
|
|
CMake/FindBrotli.cmake \
|
2024-08-20 06:47:55 +08:00
|
|
|
CMake/FindCares.cmake \
|
2020-03-13 00:18:40 +08:00
|
|
|
CMake/FindGSS.cmake \
|
cmake: migrate dependency detections to Find modules
For: libgsasl, libidn2, libssh, libuv.
The new Find modules retain using `pkg-config` natively, not as a "hint"
for the CMake-native detection. Of the pre-existing Find modules, only
FindNettle, and FindGSS (with customized code) work this way. Align
detection code for the new modules and add version detection for the
CMake-native paths.
Also, add CMake-native detection for `libgsasl`.
The remaining outlier in `CMakeLists.txt` is GnuTLS, which has
a CMake built-in Find module, but which lacks `pkg-config` support,
required for vcpkg. It remains unchanged.
Another part-outlier is `libssh`, which keeps requiring the trick
`find_package(libssh CONFIG QUIET)` for reasons I could not yet figure
out.
Closes #14555
2024-08-19 20:27:51 +08:00
|
|
|
CMake/FindLibgsasl.cmake \
|
|
|
|
CMake/FindLibidn2.cmake \
|
2024-08-20 06:47:55 +08:00
|
|
|
CMake/FindLibpsl.cmake \
|
cmake: migrate dependency detections to Find modules
For: libgsasl, libidn2, libssh, libuv.
The new Find modules retain using `pkg-config` natively, not as a "hint"
for the CMake-native detection. Of the pre-existing Find modules, only
FindNettle, and FindGSS (with customized code) work this way. Align
detection code for the new modules and add version detection for the
CMake-native paths.
Also, add CMake-native detection for `libgsasl`.
The remaining outlier in `CMakeLists.txt` is GnuTLS, which has
a CMake built-in Find module, but which lacks `pkg-config` support,
required for vcpkg. It remains unchanged.
Another part-outlier is `libssh`, which keeps requiring the trick
`find_package(libssh CONFIG QUIET)` for reasons I could not yet figure
out.
Closes #14555
2024-08-19 20:27:51 +08:00
|
|
|
CMake/FindLibssh.cmake \
|
2024-08-20 06:47:55 +08:00
|
|
|
CMake/FindLibssh2.cmake \
|
cmake: migrate dependency detections to Find modules
For: libgsasl, libidn2, libssh, libuv.
The new Find modules retain using `pkg-config` natively, not as a "hint"
for the CMake-native detection. Of the pre-existing Find modules, only
FindNettle, and FindGSS (with customized code) work this way. Align
detection code for the new modules and add version detection for the
CMake-native paths.
Also, add CMake-native detection for `libgsasl`.
The remaining outlier in `CMakeLists.txt` is GnuTLS, which has
a CMake built-in Find module, but which lacks `pkg-config` support,
required for vcpkg. It remains unchanged.
Another part-outlier is `libssh`, which keeps requiring the trick
`find_package(libssh CONFIG QUIET)` for reasons I could not yet figure
out.
Closes #14555
2024-08-19 20:27:51 +08:00
|
|
|
CMake/FindLibuv.cmake \
|
2020-03-13 00:18:40 +08:00
|
|
|
CMake/FindMbedTLS.cmake \
|
2022-04-11 00:21:37 +08:00
|
|
|
CMake/FindMSH3.cmake \
|
cmake: migrate dependency detections to Find modules
For: libgsasl, libidn2, libssh, libuv.
The new Find modules retain using `pkg-config` natively, not as a "hint"
for the CMake-native detection. Of the pre-existing Find modules, only
FindNettle, and FindGSS (with customized code) work this way. Align
detection code for the new modules and add version detection for the
CMake-native paths.
Also, add CMake-native detection for `libgsasl`.
The remaining outlier in `CMakeLists.txt` is GnuTLS, which has
a CMake built-in Find module, but which lacks `pkg-config` support,
required for vcpkg. It remains unchanged.
Another part-outlier is `libssh`, which keeps requiring the trick
`find_package(libssh CONFIG QUIET)` for reasons I could not yet figure
out.
Closes #14555
2024-08-19 20:27:51 +08:00
|
|
|
CMake/FindMbedTLS.cmake \
|
2020-03-13 00:18:40 +08:00
|
|
|
CMake/FindNGHTTP2.cmake \
|
2020-05-09 05:13:46 +08:00
|
|
|
CMake/FindNGHTTP3.cmake \
|
|
|
|
CMake/FindNGTCP2.cmake \
|
2024-07-31 16:02:13 +08:00
|
|
|
CMake/FindNettle.cmake \
|
2024-08-20 06:47:55 +08:00
|
|
|
CMake/FindQuiche.cmake \
|
|
|
|
CMake/FindRustls.cmake \
|
2024-08-16 05:38:10 +08:00
|
|
|
CMake/FindWolfSSH.cmake \
|
2020-03-13 00:18:40 +08:00
|
|
|
CMake/FindWolfSSL.cmake \
|
2020-08-21 01:41:39 +08:00
|
|
|
CMake/FindZstd.cmake \
|
2020-03-13 00:18:40 +08:00
|
|
|
CMake/Macros.cmake \
|
|
|
|
CMake/OtherTests.cmake \
|
2023-04-17 06:28:25 +08:00
|
|
|
CMake/PickyWarnings.cmake \
|
2020-03-13 00:18:40 +08:00
|
|
|
CMake/Platforms/WindowsCache.cmake \
|
|
|
|
CMake/Utilities.cmake \
|
|
|
|
CMakeLists.txt
|
2009-04-15 06:00:37 +08:00
|
|
|
|
2022-03-30 20:35:56 +08:00
|
|
|
VC_DIST = projects/README.md \
|
2022-02-14 05:58:04 +08:00
|
|
|
projects/build-openssl.bat \
|
|
|
|
projects/build-wolfssl.bat \
|
|
|
|
projects/checksrc.bat \
|
|
|
|
projects/generate.bat \
|
|
|
|
projects/wolfssl_options.h \
|
2017-03-31 05:56:55 +08:00
|
|
|
projects/wolfssl_override.props
|
2014-04-08 16:17:03 +08:00
|
|
|
|
2020-08-26 18:59:05 +08:00
|
|
|
WINBUILD_DIST = winbuild/README.md winbuild/gen_resp_file.bat \
|
2024-07-02 16:41:35 +08:00
|
|
|
winbuild/MakefileBuild.vc winbuild/Makefile.vc winbuild/makedebug.bat
|
2011-01-29 05:19:44 +08:00
|
|
|
|
2019-03-26 21:26:05 +08:00
|
|
|
PLAN9_DIST = plan9/include/mkfile \
|
|
|
|
plan9/include/mkfile \
|
|
|
|
plan9/mkfile.proto \
|
|
|
|
plan9/mkfile \
|
2020-03-23 21:44:29 +08:00
|
|
|
plan9/README \
|
2019-03-26 21:26:05 +08:00
|
|
|
plan9/lib/mkfile.inc \
|
|
|
|
plan9/lib/mkfile \
|
|
|
|
plan9/src/mkfile.inc \
|
|
|
|
plan9/src/mkfile
|
|
|
|
|
2024-09-07 16:03:25 +08:00
|
|
|
EXTRA_DIST = CHANGES.md COPYING Makefile.dist \
|
|
|
|
RELEASE-NOTES $(CMAKE_DIST) $(VC_DIST) $(WINBUILD_DIST) \
|
|
|
|
$(PLAN9_DIST) buildconf.bat Dockerfile
|
2013-02-12 02:11:14 +08:00
|
|
|
|
2023-12-21 06:10:38 +08:00
|
|
|
CLEANFILES = $(VC14_LIBVCXPROJ) $(VC14_SRCVCXPROJ) \
|
|
|
|
$(VC14_10_LIBVCXPROJ) $(VC14_10_SRCVCXPROJ) \
|
|
|
|
$(VC14_20_LIBVCXPROJ) $(VC14_20_SRCVCXPROJ) \
|
2022-02-14 05:58:04 +08:00
|
|
|
$(VC14_30_LIBVCXPROJ) $(VC14_30_SRCVCXPROJ)
|
2014-05-17 22:43:12 +08:00
|
|
|
|
2024-09-07 08:43:35 +08:00
|
|
|
DISTCLEANFILES = buildinfo.txt
|
|
|
|
|
2001-04-17 20:33:02 +08:00
|
|
|
bin_SCRIPTS = curl-config
|
|
|
|
|
2024-03-05 00:22:17 +08:00
|
|
|
SUBDIRS = lib docs src scripts
|
2024-08-02 15:49:31 +08:00
|
|
|
DIST_SUBDIRS = $(SUBDIRS) tests packages include docs
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2020-11-08 01:26:38 +08:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
2005-11-16 15:20:57 +08:00
|
|
|
pkgconfig_DATA = libcurl.pc
|
|
|
|
|
2014-05-18 07:05:55 +08:00
|
|
|
# List of files required to generate VC IDE .dsp, .vcproj and .vcxproj files
|
2013-02-12 02:11:14 +08:00
|
|
|
include lib/Makefile.inc
|
2014-05-18 07:05:55 +08:00
|
|
|
include src/Makefile.inc
|
2013-02-12 02:11:14 +08:00
|
|
|
|
2001-01-09 01:38:23 +08:00
|
|
|
dist-hook:
|
2003-03-31 19:37:47 +08:00
|
|
|
rm -rf $(top_builddir)/tests/log
|
2024-08-01 19:51:43 +08:00
|
|
|
find $(distdir) -name "*.dist" -a \! -name Makefile.dist -exec rm {} \;
|
2024-08-02 15:49:31 +08:00
|
|
|
(distit=`find $(srcdir) -name "*.dist" | grep -v Makefile`; \
|
2003-10-30 20:48:19 +08:00
|
|
|
for file in $$distit; do \
|
|
|
|
strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \
|
2017-06-14 04:03:37 +08:00
|
|
|
cp -p $$file $(distdir)$$strip; \
|
2003-10-30 20:48:19 +08:00
|
|
|
done)
|
2001-01-09 06:18:30 +08:00
|
|
|
|
2015-03-19 06:21:46 +08:00
|
|
|
check: test examples check-docs
|
2001-01-09 01:38:23 +08:00
|
|
|
|
2005-03-11 08:44:32 +08:00
|
|
|
if CROSSCOMPILING
|
|
|
|
test-full: test
|
2024-09-24 07:53:27 +08:00
|
|
|
test-nonflaky: test
|
2005-03-11 08:44:32 +08:00
|
|
|
test-torture: test
|
2024-09-24 07:53:27 +08:00
|
|
|
test-event: test
|
|
|
|
test-am: test
|
|
|
|
test-ci: test
|
|
|
|
pytest: test
|
|
|
|
pytest-ci: test
|
2005-03-11 08:44:32 +08:00
|
|
|
|
|
|
|
test:
|
|
|
|
@echo "NOTICE: we can't run the tests when cross-compiling!"
|
|
|
|
|
|
|
|
else
|
|
|
|
|
2000-11-10 22:42:06 +08:00
|
|
|
test:
|
2003-05-27 16:51:09 +08:00
|
|
|
@(cd tests; $(MAKE) all quiet-test)
|
2001-01-08 18:00:14 +08:00
|
|
|
|
2003-01-21 18:32:40 +08:00
|
|
|
test-full:
|
2003-05-27 16:51:09 +08:00
|
|
|
@(cd tests; $(MAKE) all full-test)
|
2003-01-21 18:32:40 +08:00
|
|
|
|
2017-03-22 17:48:20 +08:00
|
|
|
test-nonflaky:
|
|
|
|
@(cd tests; $(MAKE) all nonflaky-test)
|
|
|
|
|
2004-05-17 18:54:00 +08:00
|
|
|
test-torture:
|
|
|
|
@(cd tests; $(MAKE) all torture-test)
|
|
|
|
|
2017-06-02 15:25:02 +08:00
|
|
|
test-event:
|
|
|
|
@(cd tests; $(MAKE) all event-test)
|
|
|
|
|
2012-11-23 18:56:26 +08:00
|
|
|
test-am:
|
|
|
|
@(cd tests; $(MAKE) all am-test)
|
|
|
|
|
2021-09-28 03:17:29 +08:00
|
|
|
test-ci:
|
|
|
|
@(cd tests; $(MAKE) all ci-test)
|
|
|
|
|
2024-09-24 07:53:27 +08:00
|
|
|
pytest:
|
|
|
|
@(cd tests; $(MAKE) all default-pytest)
|
|
|
|
|
|
|
|
pytest-ci:
|
|
|
|
@(cd tests; $(MAKE) all ci-pytest)
|
|
|
|
|
2005-03-11 08:44:32 +08:00
|
|
|
endif
|
|
|
|
|
2007-07-13 04:38:54 +08:00
|
|
|
examples:
|
2008-03-31 11:01:13 +08:00
|
|
|
@(cd docs/examples; $(MAKE) check)
|
2007-07-13 04:38:54 +08:00
|
|
|
|
2015-03-19 06:21:46 +08:00
|
|
|
check-docs:
|
|
|
|
@(cd docs/libcurl; $(MAKE) check)
|
|
|
|
|
2001-01-08 18:00:14 +08:00
|
|
|
# Build source and binary rpms. For rpm-3.0 and above, the ~/.rpmmacros
|
|
|
|
# must contain the following line:
|
|
|
|
# %_topdir /home/loic/local/rpm
|
|
|
|
# and that /home/loic/local/rpm contains the directory SOURCES, BUILD etc.
|
|
|
|
#
|
2001-01-09 18:09:13 +08:00
|
|
|
# cd /home/loic/local/rpm ; mkdir -p SOURCES BUILD RPMS/i386 SPECS SRPMS
|
|
|
|
#
|
2001-01-08 18:00:14 +08:00
|
|
|
# If additional configure flags are needed to build the package, add the
|
|
|
|
# following in ~/.rpmmacros
|
|
|
|
# %configure CFLAGS="%{optflags}" ./configure %{_target_platform} --prefix=%{_prefix} ${AM_CONFIGFLAGS}
|
|
|
|
# and run make rpm in the following way:
|
|
|
|
# AM_CONFIGFLAGS='--with-uri=/home/users/loic/local/RedHat-6.2' make rpm
|
|
|
|
#
|
|
|
|
|
|
|
|
rpms:
|
|
|
|
$(MAKE) RPMDIST=curl rpm
|
|
|
|
$(MAKE) RPMDIST=curl-ssl rpm
|
|
|
|
|
|
|
|
rpm:
|
|
|
|
RPM_TOPDIR=`rpm --showrc | $(PERL) -n -e 'print if(s/.*_topdir\s+(.*)/$$1/)'` ; \
|
2001-01-08 21:39:21 +08:00
|
|
|
cp $(srcdir)/packages/Linux/RPM/$(RPMDIST).spec $$RPM_TOPDIR/SPECS ; \
|
2001-01-08 18:00:14 +08:00
|
|
|
cp $(PACKAGE)-$(VERSION).tar.gz $$RPM_TOPDIR/SOURCES ; \
|
|
|
|
rpm -ba --clean --rmsource $$RPM_TOPDIR/SPECS/$(RPMDIST).spec ; \
|
|
|
|
mv $$RPM_TOPDIR/RPMS/i386/$(RPMDIST)-*.rpm . ; \
|
|
|
|
mv $$RPM_TOPDIR/SRPMS/$(RPMDIST)-*.src.rpm .
|
2001-05-30 12:31:32 +08:00
|
|
|
|
|
|
|
#
|
2008-10-02 02:29:13 +08:00
|
|
|
# Build a Solaris pkgadd format file
|
2001-05-30 12:31:32 +08:00
|
|
|
# run 'make pkgadd' once you've done './configure' and 'make' to make a Solaris pkgadd format
|
|
|
|
# file (which ends up back in this directory).
|
|
|
|
# The pkgadd file is in 'pkgtrans' format, so to install on Solaris, do
|
|
|
|
# pkgadd -d ./HAXXcurl-*
|
|
|
|
#
|
|
|
|
|
2017-03-26 23:02:22 +08:00
|
|
|
# gak - libtool requires an absolute directory, hence the pwd below...
|
2001-05-30 12:31:32 +08:00
|
|
|
pkgadd:
|
|
|
|
umask 022 ; \
|
2017-03-29 06:20:32 +08:00
|
|
|
$(MAKE) install DESTDIR=`/bin/pwd`/packages/Solaris/root ; \
|
2002-09-05 16:24:21 +08:00
|
|
|
cat COPYING > $(srcdir)/packages/Solaris/copyright ; \
|
2001-05-30 12:31:32 +08:00
|
|
|
cd $(srcdir)/packages/Solaris && $(MAKE) package
|
2001-10-22 14:26:30 +08:00
|
|
|
|
|
|
|
#
|
tidy-up: OS names
Use these words and casing more consistently across text, comments and
one curl tool output:
AIX, ALPN, ANSI, BSD, Cygwin, Darwin, FreeBSD, GitHub, HP-UX, Linux,
macOS, MS-DOS, MSYS, MinGW, NTLM, POSIX, Solaris, UNIX, Unix, Unicode,
WINE, WebDAV, Win32, winbind, WinIDN, Windows, Windows CE, Winsock.
Mostly OS names and a few more.
Also a couple of other minor text fixups.
Closes #14360
2024-08-03 07:09:57 +08:00
|
|
|
# Build a Cygwin binary tarball installation file
|
2001-10-29 18:32:39 +08:00
|
|
|
# resulting .tar.bz2 file will end up at packages/Win32/cygwin
|
2001-10-22 14:26:30 +08:00
|
|
|
cygwinbin:
|
2001-10-29 18:32:39 +08:00
|
|
|
$(MAKE) -C packages/Win32/cygwin cygwinbin
|
2003-06-27 22:37:38 +08:00
|
|
|
|
|
|
|
# We extend the standard install with a custom hook:
|
2024-02-04 05:05:59 +08:00
|
|
|
if BUILD_DOCS
|
2003-06-27 22:37:38 +08:00
|
|
|
install-data-hook:
|
2020-03-11 07:51:05 +08:00
|
|
|
(cd include && $(MAKE) install)
|
|
|
|
(cd docs && $(MAKE) install)
|
|
|
|
(cd docs/libcurl && $(MAKE) install)
|
2024-02-04 05:05:59 +08:00
|
|
|
else
|
|
|
|
install-data-hook:
|
|
|
|
(cd include && $(MAKE) install)
|
2024-02-19 16:32:07 +08:00
|
|
|
(cd docs && $(MAKE) install)
|
2024-02-04 05:05:59 +08:00
|
|
|
endif
|
2003-08-07 06:15:12 +08:00
|
|
|
|
|
|
|
# We extend the standard uninstall with a custom hook:
|
|
|
|
uninstall-hook:
|
2020-03-11 07:51:05 +08:00
|
|
|
(cd include && $(MAKE) uninstall)
|
|
|
|
(cd docs && $(MAKE) uninstall)
|
|
|
|
(cd docs/libcurl && $(MAKE) uninstall)
|
2008-02-08 19:11:59 +08:00
|
|
|
|
2022-05-19 21:45:07 +08:00
|
|
|
ca-bundle: $(srcdir)/scripts/mk-ca-bundle.pl
|
2014-05-18 07:09:06 +08:00
|
|
|
@echo "generating a fresh ca-bundle.crt"
|
2022-05-19 21:45:07 +08:00
|
|
|
@perl $(srcdir)/scripts/mk-ca-bundle.pl -b -l -u lib/ca-bundle.crt
|
2008-08-24 06:02:41 +08:00
|
|
|
|
2022-05-19 21:45:07 +08:00
|
|
|
ca-firefox: $(srcdir)/scripts/firefox-db2pem.sh
|
2014-05-18 07:09:06 +08:00
|
|
|
@echo "generating a fresh ca-bundle.crt"
|
2022-05-19 21:45:07 +08:00
|
|
|
$(srcdir)/scripts/firefox-db2pem.sh lib/ca-bundle.crt
|
2011-04-27 16:23:27 +08:00
|
|
|
|
|
|
|
checksrc:
|
2020-03-11 07:51:05 +08:00
|
|
|
(cd lib && $(MAKE) checksrc)
|
|
|
|
(cd src && $(MAKE) checksrc)
|
|
|
|
(cd tests && $(MAKE) checksrc)
|
|
|
|
(cd include/curl && $(MAKE) checksrc)
|
|
|
|
(cd docs/examples && $(MAKE) checksrc)
|
2020-10-15 16:07:00 +08:00
|
|
|
(cd packages && $(MAKE) checksrc)
|
2013-02-12 02:11:14 +08:00
|
|
|
|
2018-10-23 06:33:27 +08:00
|
|
|
tidy:
|
|
|
|
(cd src && $(MAKE) tidy)
|
|
|
|
(cd lib && $(MAKE) tidy)
|