~ubuntu-branches/ubuntu/lucid/curl/lucid-201101212007

« back to all changes in this revision

Viewing changes to src/Makefile.netware

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-02-08 11:20:41 UTC
  • mto: (3.1.1 lenny) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20080208112041-hed7sb5r6ghmjf8v
Tags: upstream-7.18.0
ImportĀ upstreamĀ versionĀ 7.18.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#################################################################
2
 
# $Id: Makefile.netware,v 1.60 2007-10-09 20:15:27 gknauf Exp $
 
2
# $Id: Makefile.netware,v 1.64 2008-01-24 15:28:47 gknauf Exp $
3
3
#
4
4
## Makefile for building curl.nlm (NetWare version - gnu make)
5
5
## Use: make -f Makefile.netware
20
20
 
21
21
# Edit the path below to point to the base of your OpenSSL package.
22
22
ifndef OPENSSL_PATH
23
 
OPENSSL_PATH = ../../openssl-0.9.8e
 
23
OPENSSL_PATH = ../../openssl-0.9.8g
24
24
endif
25
25
 
26
26
# Edit the path below to point to the base of your LibSSH2 package.
27
27
ifndef LIBSSH2_PATH
28
 
LIBSSH2_PATH = ../../libssh2-0.16
 
28
LIBSSH2_PATH = ../../libssh2-0.18
29
29
endif
30
30
 
31
31
ifndef INSTDIR
35
35
# Edit the vars below to change NLM target settings.
36
36
TARGET  = curl
37
37
VERSION = $(LIBCURL_VERSION)
38
 
COPYR   = Copyright (C) 1996 - 2007, Daniel Stenberg, <daniel@haxx.se>
 
38
COPYR   = Copyright (C) $(LIBCURL_COPYRIGHT_STR)
39
39
DESCR   = cURL $(LIBCURL_VERSION_STR) ($(LIBARCH)) - http://curl.haxx.se
40
40
MTSAFE  = YES
41
41
STACK   = 64000
73
73
        CC = gcc
74
74
endif
75
75
# a native win32 awk can be downloaded from here:
76
 
# http://www.gknw.net/development/prgtools/awk-20050424.zip
 
76
# http://www.gknw.net/development/prgtools/awk-20070501.zip
77
77
AWK     = awk
78
78
CP      = cp -afv
79
79
# RM    = rm -f
324
324
ifdef IMPORTS
325
325
        @echo $(DL)import $(IMPORTS)$(DL) >> $@
326
326
endif
327
 
ifeq ($(LD),nlmconv)
 
327
ifeq ($(findstring nlmconv,$(LD)),nlmconv)
 
328
        @echo $(DL)input $(PRELUDE)$(DL) >> $@
328
329
        @echo $(DL)input $(OBJS)$(DL) >> $@
329
 
        @echo $(DL)input $(PRELUDE)$(DL) >> $@
330
330
ifdef LDLIBS
331
331
        @echo $(DL)input $(LDLIBS)$(DL) >> $@
332
332
endif