2001-01-04 18:37:07 +08:00
|
|
|
#############################################################################
|
1999-12-29 22:20:26 +08:00
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2002-02-25 21:25:33 +08:00
|
|
|
# Copyright (C) 2002, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 22:20:26 +08:00
|
|
|
#
|
2001-01-04 18:37:07 +08:00
|
|
|
# In order to be useful for every potential user, curl and libcurl are
|
|
|
|
# dual-licensed under the MPL and the MIT/X-derivate licenses.
|
1999-12-29 22:20:26 +08:00
|
|
|
#
|
2001-01-04 18:37:07 +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 MPL or the MIT/X-derivate
|
|
|
|
# licenses. You may pick one of these licenses.
|
1999-12-29 22:20:26 +08:00
|
|
|
#
|
2001-01-04 18:37:07 +08:00
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
1999-12-29 22:20:26 +08:00
|
|
|
#
|
2001-01-04 18:37:07 +08:00
|
|
|
# $Id$
|
|
|
|
#############################################################################
|
1999-12-29 22:20:26 +08:00
|
|
|
|
|
|
|
all:
|
2000-12-11 16:16:25 +08:00
|
|
|
./configure
|
1999-12-29 22:20:26 +08:00
|
|
|
make
|
|
|
|
|
|
|
|
ssl:
|
|
|
|
./configure --with-ssl
|
|
|
|
make
|
|
|
|
|
2000-12-05 21:47:30 +08:00
|
|
|
borland:
|
2001-03-15 20:34:40 +08:00
|
|
|
cd lib & make -f Makefile.b32
|
|
|
|
cd src & make -f Makefile.b32
|
2000-12-05 21:47:30 +08:00
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
mingw32:
|
2002-09-08 05:44:02 +08:00
|
|
|
cd lib & make -f Makefile.m32 ZLIB=1
|
|
|
|
cd src & make -f Makefile.m32 ZLIB=1
|
1999-12-29 22:20:26 +08:00
|
|
|
|
|
|
|
mingw32-ssl:
|
2002-09-08 05:44:02 +08:00
|
|
|
cd lib & make -f Makefile.m32 SSL=1 ZLIB=1
|
|
|
|
cd src & make -f Makefile.m32 SSL=1 ZLIB=1
|
1999-12-29 22:20:26 +08:00
|
|
|
|
|
|
|
vc:
|
2000-12-11 16:16:25 +08:00
|
|
|
cd lib
|
2001-11-22 06:59:29 +08:00
|
|
|
nmake -f Makefile.vc6 cfg=release
|
2000-12-11 16:16:25 +08:00
|
|
|
cd ..\src
|
2000-12-01 15:01:14 +08:00
|
|
|
nmake -f Makefile.vc6
|
2000-12-11 16:16:25 +08:00
|
|
|
|
|
|
|
vc-ssl:
|
|
|
|
cd lib
|
2001-11-22 06:59:29 +08:00
|
|
|
nmake -f Makefile.vc6 cfg=release-ssl
|
2000-12-11 16:16:25 +08:00
|
|
|
cd ..\src
|
2002-02-07 00:04:03 +08:00
|
|
|
nmake -f Makefile.vc6 cfg=release-ssl
|
|
|
|
|
|
|
|
vc-ssl-dll:
|
|
|
|
cd lib
|
|
|
|
nmake -f Makefile.vc6 cfg=release-ssl-dll
|
|
|
|
cd ..\src
|
2000-12-01 15:01:14 +08:00
|
|
|
nmake -f Makefile.vc6
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2003-05-21 16:08:48 +08:00
|
|
|
djgpp:
|
|
|
|
make -C lib -f Makefile.dj
|
|
|
|
make -C src -f Makefile.dj
|
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
cygwin:
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
|
|
|
|
cygwin-ssl:
|
|
|
|
./configure --with-ssl
|
|
|
|
make
|
|
|
|
|
|
|
|
unix: all
|
|
|
|
|
|
|
|
unix-ssl: ssl
|
|
|
|
|
|
|
|
linux: all
|
|
|
|
|
|
|
|
linux-ssl: ssl
|