2004-01-13 03:57:24 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
1999-12-29 09:20:26 -05:00
|
|
|
#
|
2013-02-06 17:04:02 -05:00
|
|
|
# Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-01-13 03:57:24 -05:00
|
|
|
#
|
|
|
|
# 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 http://curl.haxx.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.
|
1999-12-29 09:20:26 -05:00
|
|
|
#
|
2004-01-13 03:57:24 -05:00
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
###########################################################################
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-02-25 09:08:18 -05:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2008-07-29 23:10:03 -04:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
2011-01-06 17:41:01 -05:00
|
|
|
CMAKE_DIST = CMakeLists.txt CMake/CMakeConfigurableFile.in \
|
|
|
|
CMake/CurlCheckCSourceCompiles.cmake CMake/CurlCheckCSourceRuns.cmake \
|
|
|
|
CMake/CurlTests.c CMake/FindOpenSSL.cmake CMake/FindZLIB.cmake \
|
|
|
|
CMake/OtherTests.cmake CMake/Platforms/WindowsCache.cmake \
|
2009-04-27 08:26:41 -04:00
|
|
|
CMake/Utilities.cmake include/curl/curlbuild.h.cmake
|
2009-04-14 18:00:37 -04:00
|
|
|
|
2013-02-13 11:02:38 -05:00
|
|
|
VC6LIBDSP = vs/vc6/lib/vc6libcurl.dsp
|
|
|
|
VC6LIBDSPHEAD = vs/t/lib/vc6_libcurl_dsp.head
|
|
|
|
VC6LIBDSPFOOT = vs/t/lib/vc6_libcurl_dsp.foot
|
2013-02-11 13:11:14 -05:00
|
|
|
|
2013-02-13 11:02:38 -05:00
|
|
|
VC8LIBPRJ = vs/vc8/lib/vc8libcurl.vcproj
|
|
|
|
VC8LIBPRJHEAD = vs/t/lib/vc8_libcurl_prj.head
|
|
|
|
VC8LIBPRJFOOT = vs/t/lib/vc8_libcurl_prj.foot
|
2013-02-11 13:11:14 -05:00
|
|
|
|
|
|
|
VC_DIST = \
|
2013-02-13 11:02:38 -05:00
|
|
|
vs/t/README \
|
2013-02-11 13:11:14 -05:00
|
|
|
$(VC6LIBDSP) $(VC6LIBDSPHEAD) $(VC6LIBDSPFOOT) \
|
|
|
|
$(VC8LIBPRJ) $(VC8LIBPRJHEAD) $(VC8LIBPRJFOOT) \
|
2013-02-13 11:02:38 -05:00
|
|
|
vs/vc6/vc6curl.dsw \
|
|
|
|
vs/vc6/lib/vc6libcurl.dsw \
|
|
|
|
vs/vc6/src/vc6curltool.dsw \
|
|
|
|
vs/vc6/src/vc6curltool.dsp
|
2013-02-11 13:11:14 -05:00
|
|
|
|
|
|
|
VC6LIBDSP_DEPS = $(VC6LIBDSPHEAD) $(VC6LIBDSPFOOT) \
|
|
|
|
Makefile.am lib/Makefile.inc
|
|
|
|
|
|
|
|
VC8LIBPRJ_DEPS = $(VC8LIBPRJHEAD) $(VC8LIBPRJFOOT) \
|
|
|
|
Makefile.am lib/Makefile.inc
|
|
|
|
|
2011-01-28 16:19:44 -05:00
|
|
|
WINBUILD_DIST = winbuild/BUILD.WINDOWS.txt winbuild/gen_resp_file.bat \
|
2013-02-06 17:14:11 -05:00
|
|
|
winbuild/MakefileBuild.vc winbuild/Makefile.vc \
|
|
|
|
winbuild/Makefile.msvc.names
|
2011-01-28 16:19:44 -05:00
|
|
|
|
2009-04-14 18:00:37 -04:00
|
|
|
EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \
|
2013-02-11 13:11:14 -05:00
|
|
|
RELEASE-NOTES buildconf libcurl.pc.in MacOSX-Framework \
|
|
|
|
$(CMAKE_DIST) $(VC_DIST) $(WINBUILD_DIST) lib/libcurl.vers.in
|
|
|
|
|
|
|
|
CLEANFILES = $(VC6LIBDSP) $(VC8LIBPRJ)
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-04-17 08:33:02 -04:00
|
|
|
bin_SCRIPTS = curl-config
|
|
|
|
|
2011-05-03 16:39:38 -04:00
|
|
|
SUBDIRS = lib src include
|
|
|
|
DIST_SUBDIRS = $(SUBDIRS) tests packages docs
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-11-16 02:20:57 -05:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = libcurl.pc
|
|
|
|
|
2013-02-11 13:11:14 -05:00
|
|
|
# List of libcurl source files required to generate VC IDE dsp and prj files
|
|
|
|
include lib/Makefile.inc
|
|
|
|
|
|
|
|
WIN32SOURCES = $(CSOURCES)
|
|
|
|
WIN32HEADERS = $(HHEADERS) config-win32.h
|
|
|
|
|
2001-01-08 12:38:23 -05:00
|
|
|
dist-hook:
|
2003-03-31 06:37:47 -05:00
|
|
|
rm -rf $(top_builddir)/tests/log
|
2003-10-30 07:48:19 -05:00
|
|
|
find $(distdir) -name "*.dist" -exec rm {} \;
|
2009-11-04 07:34:48 -05:00
|
|
|
(distit=`find $(srcdir) -name "*.dist" | grep -v ./ares/`; \
|
2003-10-30 07:48:19 -05:00
|
|
|
for file in $$distit; do \
|
|
|
|
strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \
|
|
|
|
cp $$file $(distdir)$$strip; \
|
|
|
|
done)
|
2001-01-08 17:18:30 -05:00
|
|
|
|
2001-08-21 05:14:31 -04:00
|
|
|
html:
|
|
|
|
cd docs; make html
|
|
|
|
|
2002-10-14 03:39:49 -04:00
|
|
|
pdf:
|
|
|
|
cd docs; make pdf
|
|
|
|
|
2007-07-12 16:38:54 -04:00
|
|
|
check: test examples
|
2001-01-08 12:38:23 -05:00
|
|
|
|
2005-03-10 19:44:32 -05:00
|
|
|
if CROSSCOMPILING
|
|
|
|
test-full: test
|
|
|
|
test-torture: test
|
|
|
|
|
|
|
|
test:
|
|
|
|
@echo "NOTICE: we can't run the tests when cross-compiling!"
|
|
|
|
|
|
|
|
else
|
|
|
|
|
2000-11-10 09:42:06 -05:00
|
|
|
test:
|
2003-05-27 04:51:09 -04:00
|
|
|
@(cd tests; $(MAKE) all quiet-test)
|
2001-01-08 05:00:14 -05:00
|
|
|
|
2003-01-21 05:32:40 -05:00
|
|
|
test-full:
|
2003-05-27 04:51:09 -04:00
|
|
|
@(cd tests; $(MAKE) all full-test)
|
2003-01-21 05:32:40 -05:00
|
|
|
|
2004-05-17 06:54:00 -04:00
|
|
|
test-torture:
|
|
|
|
@(cd tests; $(MAKE) all torture-test)
|
|
|
|
|
2012-11-23 05:56:26 -05:00
|
|
|
test-am:
|
|
|
|
@(cd tests; $(MAKE) all am-test)
|
|
|
|
|
2005-03-10 19:44:32 -05:00
|
|
|
endif
|
|
|
|
|
2007-07-12 16:38:54 -04:00
|
|
|
examples:
|
2008-03-30 23:01:13 -04:00
|
|
|
@(cd docs/examples; $(MAKE) check)
|
2007-07-12 16:38:54 -04:00
|
|
|
|
2013-02-11 13:11:14 -05:00
|
|
|
# This is a hook to have 'make clean' also clean up the docs and the tests
|
2012-07-15 18:18:37 -04:00
|
|
|
# dir. The extra check for the Makefiles being present is necessary because
|
|
|
|
# 'make distcheck' will make clean first in these directories _before_ it runs
|
|
|
|
# this hook.
|
2008-10-01 14:29:13 -04:00
|
|
|
clean-local:
|
2012-07-15 18:18:37 -04:00
|
|
|
@(if test -f tests/Makefile; then cd tests; $(MAKE) clean; fi)
|
|
|
|
@(if test -f docs/Makefile; then cd docs; $(MAKE) clean; fi)
|
2008-10-01 14:29:13 -04:00
|
|
|
|
2001-01-09 05:09:13 -05:00
|
|
|
#
|
2001-01-08 05:00:14 -05: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 05:09:13 -05:00
|
|
|
# cd /home/loic/local/rpm ; mkdir -p SOURCES BUILD RPMS/i386 SPECS SRPMS
|
|
|
|
#
|
2001-01-08 05:00:14 -05: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 08:39:21 -05:00
|
|
|
cp $(srcdir)/packages/Linux/RPM/$(RPMDIST).spec $$RPM_TOPDIR/SPECS ; \
|
2001-01-08 05:00:14 -05: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 00:31:32 -04:00
|
|
|
|
|
|
|
#
|
2008-10-01 14:29:13 -04:00
|
|
|
# Build a Solaris pkgadd format file
|
2001-05-30 00:31:32 -04: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-*
|
|
|
|
#
|
|
|
|
|
|
|
|
# gak - libtool requires an absoulte directory, hence the pwd below...
|
|
|
|
pkgadd:
|
|
|
|
umask 022 ; \
|
|
|
|
make install DESTDIR=`/bin/pwd`/packages/Solaris/root ; \
|
2002-09-05 04:24:21 -04:00
|
|
|
cat COPYING > $(srcdir)/packages/Solaris/copyright ; \
|
2001-05-30 00:31:32 -04:00
|
|
|
cd $(srcdir)/packages/Solaris && $(MAKE) package
|
2001-10-22 02:26:30 -04:00
|
|
|
|
|
|
|
#
|
2001-10-29 05:32:39 -05:00
|
|
|
# Build a cygwin binary tarball installation file
|
|
|
|
# resulting .tar.bz2 file will end up at packages/Win32/cygwin
|
2001-10-22 02:26:30 -04:00
|
|
|
cygwinbin:
|
2001-10-29 05:32:39 -05:00
|
|
|
$(MAKE) -C packages/Win32/cygwin cygwinbin
|
2003-06-27 10:37:38 -04:00
|
|
|
|
|
|
|
# We extend the standard install with a custom hook:
|
|
|
|
install-data-hook:
|
|
|
|
cd include && $(MAKE) install
|
|
|
|
cd docs && $(MAKE) install
|
2003-08-06 18:15:12 -04:00
|
|
|
|
|
|
|
# We extend the standard uninstall with a custom hook:
|
|
|
|
uninstall-hook:
|
|
|
|
cd include && $(MAKE) uninstall
|
|
|
|
cd docs && $(MAKE) uninstall
|
2008-02-08 06:11:59 -05:00
|
|
|
|
|
|
|
ca-bundle: lib/mk-ca-bundle.pl
|
|
|
|
@echo "generate a fresh ca-bundle.crt"
|
2008-02-09 20:32:43 -05:00
|
|
|
@perl $< -b -l -u lib/ca-bundle.crt
|
2008-08-23 18:02:41 -04:00
|
|
|
|
2008-08-28 16:08:37 -04:00
|
|
|
ca-firefox: lib/firefox-db2pem.sh
|
2008-08-23 18:02:41 -04:00
|
|
|
@echo "generate a fresh ca-bundle.crt"
|
|
|
|
./lib/firefox-db2pem.sh lib/ca-bundle.crt
|
2011-04-27 04:23:27 -04:00
|
|
|
|
|
|
|
checksrc:
|
|
|
|
cd lib && $(MAKE) checksrc
|
|
|
|
cd src && $(MAKE) checksrc
|
2013-02-11 13:11:14 -05:00
|
|
|
|
|
|
|
.PHONY: vc6-ide
|
|
|
|
|
|
|
|
vc6-ide:
|
|
|
|
$(MAKE) $(VC6LIBDSP)
|
|
|
|
|
|
|
|
$(VC6LIBDSP): $(VC6LIBDSP_DEPS)
|
|
|
|
@(echo "generating '$(VC6LIBDSP)'"; \
|
|
|
|
\
|
2013-02-13 11:02:38 -05:00
|
|
|
for dir in 'vs' 'vs/vc6' 'vs/vc6/lib'; do \
|
2013-02-11 13:11:14 -05:00
|
|
|
test -d "$$dir" || mkdir "$$dir" || exit 1; \
|
|
|
|
done; \
|
|
|
|
\
|
|
|
|
dir='..\..\..\lib\'; \
|
|
|
|
body='$(VC6LIBDSP)'.body; \
|
|
|
|
win32_srcs='$(WIN32SOURCES)'; \
|
|
|
|
win32_hdrs='$(WIN32HEADERS)'; \
|
|
|
|
sorted_srcs=`for file in $$win32_srcs; do echo $$file; done | sort`; \
|
|
|
|
sorted_hdrs=`for file in $$win32_hdrs; do echo $$file; done | sort`; \
|
|
|
|
\
|
|
|
|
echo "# Begin Group \"Source Files\"" > $$body; \
|
|
|
|
echo "" >> $$body; \
|
|
|
|
echo "# PROP Default_Filter \"\"" >> $$body; \
|
|
|
|
for file in $$sorted_srcs; do \
|
|
|
|
echo "# Begin Source File" >> $$body; \
|
|
|
|
echo "" >> $$body; \
|
|
|
|
echo "SOURCE="$$dir$$file >> $$body; \
|
|
|
|
echo "# End Source File" >> $$body; \
|
|
|
|
done; \
|
|
|
|
echo "# End Group" >> $$body; \
|
|
|
|
echo "# Begin Group \"Header Files\"" >> $$body; \
|
|
|
|
echo "" >> $$body; \
|
|
|
|
echo "# PROP Default_Filter \"\"" >> $$body; \
|
|
|
|
for file in $$sorted_hdrs; do \
|
|
|
|
echo "# Begin Source File" >> $$body; \
|
|
|
|
echo "" >> $$body; \
|
|
|
|
echo "SOURCE="$$dir$$file >> $$body; \
|
|
|
|
echo "# End Source File" >> $$body; \
|
|
|
|
done; \
|
|
|
|
echo "# End Group" >> $$body; \
|
|
|
|
\
|
|
|
|
awk '{ printf("%s\r\n", $$0); }' \
|
|
|
|
$(srcdir)/$(VC6LIBDSPHEAD) $$body $(srcdir)/$(VC6LIBDSPFOOT) \
|
|
|
|
> $(VC6LIBDSP) || { rm -f $$body; exit 1; }; \
|
|
|
|
\
|
|
|
|
rm -f $$body)
|
|
|
|
|
|
|
|
.PHONY: vc8-ide
|
|
|
|
|
|
|
|
vc8-ide:
|
|
|
|
$(MAKE) $(VC8LIBPRJ)
|
|
|
|
|
|
|
|
$(VC8LIBPRJ): $(VC8LIBPRJ_DEPS)
|
|
|
|
@(echo "generating '$(VC8LIBPRJ)'"; \
|
|
|
|
\
|
2013-02-13 11:02:38 -05:00
|
|
|
for dir in 'vs' 'vs/vc8' 'vs/vc8/lib'; do \
|
2013-02-11 13:11:14 -05:00
|
|
|
test -d "$$dir" || mkdir "$$dir" || exit 1; \
|
|
|
|
done; \
|
|
|
|
\
|
|
|
|
dir='..\..\..\lib\'; \
|
|
|
|
body='$(VC8LIBPRJ)'.body; \
|
|
|
|
win32_srcs='$(WIN32SOURCES)'; \
|
|
|
|
win32_hdrs='$(WIN32HEADERS)'; \
|
|
|
|
sorted_srcs=`for file in $$win32_srcs; do echo $$file; done | sort`; \
|
|
|
|
sorted_hdrs=`for file in $$win32_hdrs; do echo $$file; done | sort`; \
|
|
|
|
\
|
|
|
|
echo "%tab%%tab%<Filter Name=\"Source Files\">" > $$body; \
|
|
|
|
for file in $$sorted_srcs; do \
|
|
|
|
echo "%tab%%tab%%tab%<File RelativePath=\""$$dir$$file"\"></File>" >> $$body; \
|
|
|
|
done; \
|
|
|
|
echo "%tab%%tab%</Filter>" >> $$body; \
|
|
|
|
echo "%tab%%tab%<Filter Name=\"Header Files\">" >> $$body; \
|
|
|
|
for file in $$sorted_hdrs; do \
|
|
|
|
echo "%tab%%tab%%tab%<File RelativePath=\""$$dir$$file"\"></File>" >> $$body; \
|
|
|
|
done; \
|
|
|
|
echo "%tab%%tab%</Filter>" >> $$body; \
|
|
|
|
\
|
|
|
|
awk '{ gsub(/%tab%/, "\t"); printf("%s\r\n", $$0); }' \
|
|
|
|
$(srcdir)/$(VC8LIBPRJHEAD) $$body $(srcdir)/$(VC8LIBPRJFOOT) \
|
|
|
|
> $(VC8LIBPRJ) || { rm -f $$body; exit 1; }; \
|
|
|
|
\
|
|
|
|
rm -f $$body)
|
|
|
|
|