new
[libcurl.git] / Makefile.dist
blob0f82865f7c6fe31e9f5b8604c24d3f1610846297
1 ############################################################################
2 #                                  _   _ ____  _     
3 #  Project                     ___| | | |  _ \| |    
4 #                             / __| | | | |_) | |    
5 #                            | (__| |_| |  _ <| |___ 
6 #                             \___|\___/|_| \_\_____|
8 #  The contents of this file are subject to the Mozilla Public License
9 #  Version 1.0 (the "License"); you may not use this file except in
10 #  compliance with the License. You may obtain a copy of the License at
11 #  http://www.mozilla.org/MPL/
13 #  Software distributed under the License is distributed on an "AS IS"
14 #  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
15 #  License for the specific language governing rights and limitations
16 #  under the License.
18 #  The Original Code is Curl.
20 #  The Initial Developer of the Original Code is Daniel Stenberg.
22 #  Portions created by the Initial Developer are Copyright (C) 1999.
23 #  All Rights Reserved.
25 # ------------------------------------------------------------
26 # Main author:
27 # - Daniel Stenberg <Daniel.Stenberg@haxx.nu>
29 #       http://curl.haxx.nu
31 # $Source: /cvsroot/curl/curl/Makefile.dist,v $
32 # $Revision: 1.1.1.1 $
33 # $Date: 1999-12-29 14:20:29 $
34 # $Author: bagder $
35 # $State: Exp $
36 # $Locker:  $
38 # ------------------------------------------------------------
40 # In a normal unix-setup, this file will become overwritten.
42 ############################################################################
44 all:
45         ./configure
46         make
48 ssl:
49         ./configure --with-ssl
50         make
52 mingw32:
53         cd lib; make -f Makefile.m32
54         cd src; make -f Makefile.m32
56 mingw32-ssl:
57         cd lib; make -f Makefile.m32 SSL=1
58         cd src; make -f Makefile.m32 SSL=1
60 vc:
61         cd lib; nmake -f Makefile.vc6
62         cd src; nmake -f Makefile.vc6
64 cygwin:
65         ./configure
66         make
68 cygwin-ssl:
69         ./configure --with-ssl
70         make
72 unix: all
74 unix-ssl: ssl
76 linux: all
78 linux-ssl: ssl