2004-01-13 03:57:01 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2004-01-13 02:42:11 -05:00
|
|
|
# Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
#
|
2004-01-13 03:57:01 -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.
|
1999-12-29 09:20:26 -05:00
|
|
|
#
|
2001-01-04 05:37:07 -05: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 03:57:01 -05:00
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
#
|
2001-01-04 05:37:07 -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
|
|
|
#
|
2001-01-04 05:37:07 -05:00
|
|
|
# $Id$
|
2004-01-13 03:57:01 -05:00
|
|
|
###########################################################################
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
all:
|
2000-12-11 03:16:25 -05:00
|
|
|
./configure
|
1999-12-29 09:20:26 -05:00
|
|
|
make
|
|
|
|
|
|
|
|
ssl:
|
|
|
|
./configure --with-ssl
|
|
|
|
make
|
|
|
|
|
2000-12-05 08:47:30 -05:00
|
|
|
borland:
|
2004-07-14 07:39:29 -04:00
|
|
|
cd lib
|
|
|
|
make -f Makefile.b32
|
|
|
|
cd ..\src
|
|
|
|
make -f Makefile.b32
|
2000-12-05 08:47:30 -05:00
|
|
|
|
2004-07-15 18:20:52 -04: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
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
mingw32:
|
2002-09-07 17:44:02 -04:00
|
|
|
cd lib & make -f Makefile.m32 ZLIB=1
|
|
|
|
cd src & make -f Makefile.m32 ZLIB=1
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
mingw32-ssl:
|
2002-09-07 17:44:02 -04:00
|
|
|
cd lib & make -f Makefile.m32 SSL=1 ZLIB=1
|
|
|
|
cd src & make -f Makefile.m32 SSL=1 ZLIB=1
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-06-22 14:26:23 -04:00
|
|
|
mingw32-clean:
|
|
|
|
cd lib & make -f Makefile.m32 clean
|
|
|
|
cd src & make -f Makefile.m32 clean
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
vc:
|
2000-12-11 03:16:25 -05:00
|
|
|
cd lib
|
2004-02-26 11:23:28 -05:00
|
|
|
nmake /f Makefile.vc6 cfg=release
|
2000-12-11 03:16:25 -05:00
|
|
|
cd ..\src
|
2004-02-26 11:23:28 -05:00
|
|
|
nmake /f Makefile.vc6
|
2000-12-11 03:16:25 -05:00
|
|
|
|
2004-07-11 08:31:29 -04:00
|
|
|
vc-zlib:
|
|
|
|
cd lib
|
|
|
|
nmake /f Makefile.vc6 cfg=release-zlib
|
|
|
|
cd ..\src
|
|
|
|
nmake /f Makefile.vc6 cfg=release-zlib
|
|
|
|
|
2000-12-11 03:16:25 -05:00
|
|
|
vc-ssl:
|
|
|
|
cd lib
|
2004-02-26 11:23:28 -05:00
|
|
|
nmake /f Makefile.vc6 cfg=release-ssl
|
2000-12-11 03:16:25 -05:00
|
|
|
cd ..\src
|
2004-02-26 11:23:28 -05:00
|
|
|
nmake /f Makefile.vc6 cfg=release-ssl
|
2002-02-06 11:04:03 -05:00
|
|
|
|
2004-07-05 21:52:32 -04:00
|
|
|
vc-ssl-zlib:
|
|
|
|
cd lib
|
|
|
|
nmake /f Makefile.vc6 cfg=release-ssl-zlib
|
|
|
|
cd ..\src
|
2004-07-11 08:31:29 -04:00
|
|
|
nmake /f Makefile.vc6 cfg=release-ssl-zlib
|
2004-07-05 21:52:32 -04:00
|
|
|
|
2002-02-06 11:04:03 -05:00
|
|
|
vc-ssl-dll:
|
|
|
|
cd lib
|
2004-02-26 11:23:28 -05:00
|
|
|
nmake /f Makefile.vc6 cfg=release-ssl-dll
|
2002-02-06 11:04:03 -05:00
|
|
|
cd ..\src
|
2004-02-26 11:23:28 -05:00
|
|
|
nmake /f Makefile.vc6
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-10-22 07:26:58 -04:00
|
|
|
vc-libcurl-ssl-dll:
|
|
|
|
cd lib
|
2004-02-26 11:23:28 -05:00
|
|
|
nmake /f Makefile.vc6 cfg=release-libcurl-ssl-dll
|
2003-10-22 07:26:58 -04:00
|
|
|
cd ..\src
|
2004-02-26 11:23:28 -05:00
|
|
|
nmake /f Makefile.vc6
|
2003-10-22 07:26:58 -04:00
|
|
|
|
2003-05-21 04:08:48 -04:00
|
|
|
djgpp:
|
|
|
|
make -C lib -f Makefile.dj
|
|
|
|
make -C src -f Makefile.dj
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
cygwin:
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
|
|
|
|
cygwin-ssl:
|
|
|
|
./configure --with-ssl
|
|
|
|
make
|
|
|
|
|
2003-12-10 08:51:42 -05:00
|
|
|
amiga:
|
|
|
|
cd ./lib && make -f makefile.amiga
|
|
|
|
cd ./src && make -f makefile.amiga
|
|
|
|
|
2004-03-17 07:46:42 -05:00
|
|
|
netware:
|
2004-06-04 03:04:32 -04:00
|
|
|
$(MAKE) -C lib -f Makefile.netware
|
|
|
|
$(MAKE) -C src -f Makefile.netware
|
|
|
|
|
|
|
|
netware-ssl:
|
|
|
|
$(MAKE) -C lib -f Makefile.netware SSL=1
|
|
|
|
$(MAKE) -C src -f Makefile.netware SSL=1
|
2003-12-10 08:51:42 -05:00
|
|
|
|
2004-06-22 14:26:23 -04:00
|
|
|
netware-clean:
|
|
|
|
$(MAKE) -C lib -f Makefile.netware clean
|
|
|
|
$(MAKE) -C src -f Makefile.netware clean
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
unix: all
|
|
|
|
|
|
|
|
unix-ssl: ssl
|
|
|
|
|
|
|
|
linux: all
|
|
|
|
|
|
|
|
linux-ssl: ssl
|