2004-01-13 09:57:01 +01:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
1999-12-29 15:20:26 +01:00
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2008-01-19 12:33:06 +01:00
|
|
|
# Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 15:20:26 +01:00
|
|
|
#
|
2004-01-13 09:57:01 +01: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.
|
1999-12-29 15:20:26 +01:00
|
|
|
#
|
2001-01-04 11:37:07 +01: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
|
2004-01-13 09:57:01 +01:00
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
1999-12-29 15:20:26 +01:00
|
|
|
#
|
2001-01-04 11:37:07 +01:00
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
1999-12-29 15:20:26 +01:00
|
|
|
#
|
2001-01-04 11:37:07 +01:00
|
|
|
# $Id$
|
2004-01-13 09:57:01 +01:00
|
|
|
###########################################################################
|
1999-12-29 15:20:26 +01:00
|
|
|
|
2007-03-02 23:42:43 +01:00
|
|
|
VC=vc6
|
|
|
|
|
1999-12-29 15:20:26 +01:00
|
|
|
all:
|
2000-12-11 09:16:25 +01:00
|
|
|
./configure
|
1999-12-29 15:20:26 +01:00
|
|
|
make
|
|
|
|
|
|
|
|
ssl:
|
|
|
|
./configure --with-ssl
|
|
|
|
make
|
|
|
|
|
2000-12-05 14:47:30 +01:00
|
|
|
borland:
|
2004-07-14 13:39:29 +02:00
|
|
|
cd lib
|
|
|
|
make -f Makefile.b32
|
|
|
|
cd ..\src
|
|
|
|
make -f Makefile.b32
|
2000-12-05 14:47:30 +01:00
|
|
|
|
2004-07-16 00:20:52 +02:00
|
|
|
borland-ssl:
|
|
|
|
cd lib
|
|
|
|
make -f Makefile.b32 WITH_SSL=1
|
|
|
|
cd ..\src
|
|
|
|
make -f Makefile.b32 WITH_SSL=1
|
|
|
|
|
|
|
|
borland-ssl-zlib:
|
|
|
|
cd lib
|
|
|
|
make -f Makefile.b32 WITH_SSL=1 WITH_ZLIB=1
|
|
|
|
cd ..\src
|
|
|
|
make -f Makefile.b32 WITH_SSL=1 WITH_ZLIB=1
|
|
|
|
|
|
|
|
borland-clean:
|
|
|
|
cd lib
|
|
|
|
make -f Makefile.b32 clean
|
|
|
|
cd ..\src
|
|
|
|
make -f Makefile.b32 clean
|
|
|
|
|
2005-01-08 17:12:27 +01:00
|
|
|
watcom:
|
|
|
|
cd lib
|
|
|
|
wmake -f Makefile.Watcom
|
|
|
|
cd ..\src
|
|
|
|
wmake -f Makefile.Watcom
|
|
|
|
|
|
|
|
watcom-clean:
|
|
|
|
cd lib
|
|
|
|
wmake -f Makefile.Watcom clean
|
|
|
|
cd ..\src
|
|
|
|
wmake -f Makefile.Watcom clean
|
|
|
|
|
1999-12-29 15:20:26 +01:00
|
|
|
mingw32:
|
2007-08-03 13:24:22 +02:00
|
|
|
$(MAKE) -C lib -f Makefile.m32
|
|
|
|
$(MAKE) -C src -f Makefile.m32
|
|
|
|
|
|
|
|
mingw32-zlib:
|
2004-11-13 17:57:56 +01:00
|
|
|
$(MAKE) -C lib -f Makefile.m32 ZLIB=1
|
|
|
|
$(MAKE) -C src -f Makefile.m32 ZLIB=1
|
1999-12-29 15:20:26 +01:00
|
|
|
|
2007-08-03 13:24:22 +02:00
|
|
|
mingw32-ssl-zlib:
|
2004-11-13 17:57:56 +01:00
|
|
|
$(MAKE) -C lib -f Makefile.m32 SSL=1 ZLIB=1
|
|
|
|
$(MAKE) -C src -f Makefile.m32 SSL=1 ZLIB=1
|
1999-12-29 15:20:26 +01:00
|
|
|
|
2007-08-03 13:24:22 +02:00
|
|
|
mingw32-ssh2-ssl-zlib:
|
2007-01-25 14:15:47 +01:00
|
|
|
$(MAKE) -C lib -f Makefile.m32 SSH2=1 SSL=1 ZLIB=1
|
|
|
|
$(MAKE) -C src -f Makefile.m32 SSH2=1 SSL=1 ZLIB=1
|
|
|
|
|
2007-08-03 13:24:22 +02:00
|
|
|
mingw32-ssh2-ssl-sspi-zlib:
|
2007-01-28 22:54:10 +01:00
|
|
|
$(MAKE) -C lib -f Makefile.m32 SSH2=1 SSL=1 SSPI=1 ZLIB=1
|
|
|
|
$(MAKE) -C src -f Makefile.m32 SSH2=1 SSL=1 SSPI=1 ZLIB=1
|
|
|
|
|
2004-06-22 20:26:23 +02:00
|
|
|
mingw32-clean:
|
2004-11-13 17:57:56 +01:00
|
|
|
$(MAKE) -C lib -f Makefile.m32 clean
|
|
|
|
$(MAKE) -C src -f Makefile.m32 clean
|
2004-06-22 20:26:23 +02:00
|
|
|
|
2005-01-18 11:17:34 +01:00
|
|
|
vc-clean:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake -f Makefile.$(VC) clean
|
2005-01-18 11:17:34 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake -f Makefile.$(VC) clean
|
2005-01-18 11:17:34 +01:00
|
|
|
|
|
|
|
vc-all:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake -f Makefile.$(VC) cfg=release
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-ssl
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-zlib
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-ssl-zlib
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-ssl-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-zlib-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-ssl-dll-zlib-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-dll-ssl-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-dll-zlib-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=release-dll-ssl-dll-zlib-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-ssl
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-zlib
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-ssl-zlib
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-ssl-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-zlib-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-ssl-dll-zlib-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-dll-ssl-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-dll-zlib-dll
|
|
|
|
nmake -f Makefile.$(VC) cfg=debug-dll-ssl-dll-zlib-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
|
1999-12-29 15:20:26 +01:00
|
|
|
vc:
|
2000-12-11 09:16:25 +01:00
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release
|
2000-12-11 09:16:25 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC)
|
2000-12-11 09:16:25 +01:00
|
|
|
|
2008-01-19 12:33:06 +01:00
|
|
|
vc-x64:
|
|
|
|
cd lib
|
|
|
|
MACHINE=x64 nmake /f Makefile.$(VC) cfg=release
|
|
|
|
cd ..\src
|
|
|
|
MACHINE=x64 nmake /f Makefile.$(VC)
|
|
|
|
|
2004-07-11 14:31:29 +02:00
|
|
|
vc-zlib:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-zlib
|
2004-07-11 14:31:29 +02:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-zlib
|
2004-07-11 14:31:29 +02:00
|
|
|
|
2000-12-11 09:16:25 +01:00
|
|
|
vc-ssl:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-ssl
|
2000-12-11 09:16:25 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-ssl
|
2002-02-06 17:04:03 +01:00
|
|
|
|
2004-07-06 03:52:32 +02:00
|
|
|
vc-ssl-zlib:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-ssl-zlib
|
2004-07-06 03:52:32 +02:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-ssl-zlib
|
2004-07-06 03:52:32 +02:00
|
|
|
|
2002-02-06 17:04:03 +01:00
|
|
|
vc-ssl-dll:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-ssl-dll
|
2002-02-06 17:04:03 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-ssl-dll
|
1999-12-29 15:20:26 +01:00
|
|
|
|
2005-01-18 11:17:34 +01:00
|
|
|
vc-dll-ssl-dll:
|
2003-10-22 13:26:58 +02:00
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-dll-ssl-dll
|
2003-10-22 13:26:58 +02:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-dll-ssl-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
|
|
|
|
vc-dll:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
|
|
|
|
vc-dll-zlib-dll:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-dll-zlib-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-dll-zlib-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
|
|
|
|
vc-dll-ssl-dll-zlib-dll:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-dll-ssl-dll-zlib-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-dll-ssl-dll-zlib-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
|
|
|
|
vc-ssl-dll-zlib-dll:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-ssl-dll-zlib-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-ssl-dll-zlib-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
|
|
|
|
vc-zlib-dll:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-zlib-dll
|
2005-01-18 11:17:34 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release-zlib-dll
|
2003-10-22 13:26:58 +02:00
|
|
|
|
2005-03-11 16:10:08 +01:00
|
|
|
vc-sspi:
|
|
|
|
cd lib
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release WINDOWS_SSPI=1
|
2005-03-11 16:10:08 +01:00
|
|
|
cd ..\src
|
2007-03-02 23:42:43 +01:00
|
|
|
nmake /f Makefile.$(VC) cfg=release WINDOWS_SSPI=1
|
2005-03-11 16:10:08 +01:00
|
|
|
|
2003-05-21 10:08:48 +02:00
|
|
|
djgpp:
|
2004-11-13 17:57:56 +01:00
|
|
|
$(MAKE) -C lib -f Makefile.dj
|
|
|
|
$(MAKE) -C src -f Makefile.dj
|
2003-05-21 10:08:48 +02:00
|
|
|
|
1999-12-29 15:20:26 +01:00
|
|
|
cygwin:
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
|
|
|
|
cygwin-ssl:
|
|
|
|
./configure --with-ssl
|
|
|
|
make
|
|
|
|
|
2003-12-10 14:51:42 +01:00
|
|
|
amiga:
|
|
|
|
cd ./lib && make -f makefile.amiga
|
|
|
|
cd ./src && make -f makefile.amiga
|
|
|
|
|
2004-03-17 13:46:42 +01:00
|
|
|
netware:
|
2004-06-04 09:04:32 +02:00
|
|
|
$(MAKE) -C lib -f Makefile.netware
|
|
|
|
$(MAKE) -C src -f Makefile.netware
|
|
|
|
|
2005-08-10 21:26:33 +02:00
|
|
|
netware-ares:
|
|
|
|
$(MAKE) -C lib -f Makefile.netware WITH_ARES=1
|
|
|
|
$(MAKE) -C src -f Makefile.netware WITH_ARES=1
|
|
|
|
|
2004-06-04 09:04:32 +02:00
|
|
|
netware-ssl:
|
2005-08-10 21:26:33 +02:00
|
|
|
$(MAKE) -C lib -f Makefile.netware WITH_SSL=1
|
|
|
|
$(MAKE) -C src -f Makefile.netware WITH_SSL=1
|
|
|
|
|
|
|
|
netware-ssl-zlib:
|
|
|
|
$(MAKE) -C lib -f Makefile.netware WITH_SSL=1 WITH_ZLIB=1
|
|
|
|
$(MAKE) -C src -f Makefile.netware WITH_SSL=1 WITH_ZLIB=1
|
|
|
|
|
2007-01-25 14:15:47 +01:00
|
|
|
netware-ssh2-ssl-zlib:
|
|
|
|
$(MAKE) -C lib -f Makefile.netware WITH_SSH2=1 WITH_SSL=1 WITH_ZLIB=1
|
|
|
|
$(MAKE) -C src -f Makefile.netware WITH_SSH2=1 WITH_SSL=1 WITH_ZLIB=1
|
|
|
|
|
2005-08-10 21:26:33 +02:00
|
|
|
netware-zlib:
|
|
|
|
$(MAKE) -C lib -f Makefile.netware WITH_ZLIB=1
|
|
|
|
$(MAKE) -C src -f Makefile.netware WITH_ZLIB=1
|
2003-12-10 14:51:42 +01:00
|
|
|
|
2004-06-22 20:26:23 +02:00
|
|
|
netware-clean:
|
|
|
|
$(MAKE) -C lib -f Makefile.netware clean
|
|
|
|
$(MAKE) -C src -f Makefile.netware clean
|
|
|
|
|
2007-06-22 23:10:41 +02:00
|
|
|
netware-install:
|
|
|
|
$(MAKE) -C lib -f Makefile.netware install
|
|
|
|
$(MAKE) -C src -f Makefile.netware install
|
|
|
|
|
1999-12-29 15:20:26 +01:00
|
|
|
unix: all
|
|
|
|
|
|
|
|
unix-ssl: ssl
|
|
|
|
|
|
|
|
linux: all
|
|
|
|
|
|
|
|
linux-ssl: ssl
|
2007-04-12 22:41:24 +02:00
|
|
|
|
|
|
|
vc8:
|
2008-02-08 03:57:27 +01:00
|
|
|
@echo "generate VC8 makefiles"
|
|
|
|
@sed -e "s#/GX /DWIN32 /YX#/EHsc /DWIN32#" -e "s#/GZ#/RTC1#" -e "s/wsock32.lib/wsock32.lib bufferoverflowu.lib/g" -e "s/VC6/VC8/g" lib/Makefile.vc6 > lib/Makefile.vc8
|
|
|
|
@sed -e "s#/GX /DWIN32 /YX#/EHsc /DWIN32#" -e "s#/GZ#/RTC1#" -e "s/wsock32.lib/wsock32.lib bufferoverflowu.lib/g" -e "s/VC6/VC8/g" src/Makefile.vc6 > src/Makefile.vc8
|
|
|
|
|
|
|
|
ca-bundle: lib/mk-ca-bundle.pl
|
|
|
|
@echo "generate a fresh ca-bundle.crt"
|
2008-02-10 02:32:43 +01:00
|
|
|
@perl $< -b -l -u lib/ca-bundle.crt
|
2008-02-08 03:57:27 +01:00
|
|
|
|
2008-08-28 22:08:37 +02:00
|
|
|
ca-firefox: lib/firefox-db2pem.sh
|
2008-08-24 00:02:41 +02:00
|
|
|
@echo "generate a fresh ca-bundle.crt"
|
|
|
|
./lib/firefox-db2pem.sh lib/ca-bundle.crt
|