added vc-ssl-zlib target.
[platform/upstream/curl.git] / Makefile.dist
1 #***************************************************************************
2 #                                  _   _ ____  _
3 #  Project                     ___| | | |  _ \| |
4 #                             / __| | | | |_) | |
5 #                            | (__| |_| |  _ <| |___
6 #                             \___|\___/|_| \_\_____|
7 #
8 # Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
9 #
10 # This software is licensed as described in the file COPYING, which
11 # you should have received as part of this distribution. The terms
12 # are also available at http://curl.haxx.se/docs/copyright.html.
13 #
14 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # copies of the Software, and permit persons to whom the Software is
16 # furnished to do so, under the terms of the COPYING file.
17 #
18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # KIND, either express or implied.
20 #
21 # $Id$
22 ###########################################################################
23
24 all:
25         ./configure
26         make
27
28 ssl:
29         ./configure --with-ssl
30         make
31
32 borland:
33         cd lib & make -f Makefile.b32
34         cd src & make -f Makefile.b32
35
36 mingw32:
37         cd lib & make -f Makefile.m32 ZLIB=1
38         cd src & make -f Makefile.m32 ZLIB=1
39
40 mingw32-ssl:
41         cd lib & make -f Makefile.m32 SSL=1 ZLIB=1
42         cd src & make -f Makefile.m32 SSL=1 ZLIB=1
43
44 mingw32-clean:
45         cd lib & make -f Makefile.m32 clean
46         cd src & make -f Makefile.m32 clean
47
48 vc:
49         cd lib
50         nmake /f Makefile.vc6 cfg=release
51         cd ..\src
52         nmake /f Makefile.vc6
53
54 vc-ssl:
55         cd lib
56         nmake /f Makefile.vc6 cfg=release-ssl
57         cd ..\src
58         nmake /f Makefile.vc6 cfg=release-ssl
59
60 vc-ssl-zlib:
61         cd lib
62         nmake /f Makefile.vc6 cfg=release-ssl-zlib
63         cd ..\src
64         nmake /f Makefile.vc6 cfg=release-ssl
65
66 vc-ssl-dll:
67         cd lib
68         nmake /f Makefile.vc6 cfg=release-ssl-dll
69         cd ..\src
70         nmake /f Makefile.vc6
71
72 vc-libcurl-ssl-dll:
73         cd lib
74         nmake /f Makefile.vc6 cfg=release-libcurl-ssl-dll
75         cd ..\src
76         nmake /f Makefile.vc6
77
78 djgpp:
79         make -C lib -f Makefile.dj
80         make -C src -f Makefile.dj
81
82 cygwin:
83         ./configure
84         make
85
86 cygwin-ssl:
87         ./configure --with-ssl
88         make
89
90 amiga:
91         cd ./lib && make -f makefile.amiga
92         cd ./src && make -f makefile.amiga
93
94 netware:
95         $(MAKE) -C lib -f Makefile.netware
96         $(MAKE) -C src -f Makefile.netware
97
98 netware-ssl:
99         $(MAKE) -C lib -f Makefile.netware SSL=1
100         $(MAKE) -C src -f Makefile.netware SSL=1
101
102 netware-clean:
103         $(MAKE) -C lib -f Makefile.netware clean
104         $(MAKE) -C src -f Makefile.netware clean
105
106 unix: all
107
108 unix-ssl: ssl
109
110 linux: all
111
112 linux-ssl: ssl