Günter Knauf's NetWare changes.
[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 vc:
45         cd lib
46         nmake /f Makefile.vc6 cfg=release
47         cd ..\src
48         nmake /f Makefile.vc6
49
50 vc-ssl:
51         cd lib
52         nmake /f Makefile.vc6 cfg=release-ssl
53         cd ..\src
54         nmake /f Makefile.vc6 cfg=release-ssl
55
56 vc-ssl-dll:
57         cd lib
58         nmake /f Makefile.vc6 cfg=release-ssl-dll
59         cd ..\src
60         nmake /f Makefile.vc6
61
62 vc-libcurl-ssl-dll:
63         cd lib
64         nmake /f Makefile.vc6 cfg=release-libcurl-ssl-dll
65         cd ..\src
66         nmake /f Makefile.vc6
67
68 djgpp:
69         make -C lib -f Makefile.dj
70         make -C src -f Makefile.dj
71
72 cygwin:
73         ./configure
74         make
75
76 cygwin-ssl:
77         ./configure --with-ssl
78         make
79
80 amiga:
81         cd ./lib && make -f makefile.amiga
82         cd ./src && make -f makefile.amiga
83
84 netware:
85         cd lib && make -f Makefile.netware
86         cd src && make -f Makefile.netware
87
88 unix: all
89
90 unix-ssl: ssl
91
92 linux: all
93
94 linux-ssl: ssl