fixed rule to build libcares when needed.
[platform/upstream/curl.git] / src / Makefile.netware
1 #################################################################
2 # $Id$
3 #
4 ## Makefile for building curl.nlm (NetWare version - gnu make)
5 ## Use: make -f Makefile.netware
6 ##
7 ## Comments to: Guenter Knauf http://www.gknw.de/phpbb
8 #
9 #################################################################
10
11 # Edit the path below to point to the base of your Novell NDK.
12 ifndef NDKBASE
13 NDKBASE = c:/novell
14 endif
15
16 # Edit the path below to point to the base of your Zlib sources.
17 ifndef ZLIB_PATH
18 ZLIB_PATH = ../../zlib-1.2.3
19 endif
20
21 # Edit the path below to point to the base of your OpenSSL package.
22 ifndef OPENSSL_PATH
23 OPENSSL_PATH = ../../openssl-0.9.8e
24 endif
25
26 # Edit the path below to point to the base of your LibSSH2 package.
27 ifndef LIBSSH2_PATH
28 LIBSSH2_PATH = ../../libssh2-0.15
29 endif
30
31 ifndef INSTDIR
32 INSTDIR = ..$(DS)curl-$(LIBCURL_VERSION_STR)-bin-nw
33 endif
34
35 # Edit the vars below to change NLM target settings.
36 TARGET  = curl
37 VERSION = $(LIBCURL_VERSION)
38 COPYR   = Copyright (C) 1996 - 2007, Daniel Stenberg, <daniel@haxx.se>
39 DESCR   = cURL $(LIBCURL_VERSION_STR) ($(LIBARCH)) - http://curl.haxx.se
40 MTSAFE  = YES
41 STACK   = 64000
42 SCREEN  = $(TARGET) commandline utility
43 # Comment the line below if you dont want to load protected automatically.
44 #LDRING = 3
45
46 # Edit the var below to point to your lib architecture.
47 ifndef LIBARCH
48 LIBARCH = LIBC
49 endif
50
51 # must be equal to NDEBUG or DEBUG, CURLDEBUG
52 ifndef DB
53 DB      = NDEBUG
54 endif
55 # Optimization: -O<n> or debugging: -g
56 ifeq ($(DB),NDEBUG)
57         OPT     = -O2
58         OBJDIR  = release
59 else
60         OPT     = -g
61         OBJDIR  = debug
62 endif
63
64 # The following line defines your compiler.
65 ifdef METROWERKS
66         # MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support
67         MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support/Metrowerks Support
68         CC = mwccnlm
69 else
70         CC = gcc
71 endif
72 # a native win32 awk can be downloaded from here:
73 # http://www.gknw.net/development/prgtools/awk-20050424.zip
74 AWK     = awk
75 CP      = cp -afv
76 # RM    = rm -f
77 # if you want to mark the target as MTSAFE you will need a tool for
78 # generating the xdc data for the linker; here's a minimal tool:
79 # http://www.gknw.net/development/prgtools/mkxdc.zip
80 MPKXDC  = mkxdc
81
82 # LIBARCH_U = $(shell $(AWK) 'BEGIN {print toupper(ARGV[1])}' $(LIBARCH))
83 LIBARCH_L = $(shell $(AWK) 'BEGIN {print tolower(ARGV[1])}' $(LIBARCH))
84
85 # Include the version info retrieved from curlver.h
86 -include $(OBJDIR)/version.inc
87
88 # Global flags for all compilers
89 CFLAGS  = $(OPT) -D$(DB) -DNETWARE -DHAVE_CONFIG_H -nostdinc
90
91 ifeq ($(CC),mwccnlm)
92 LD      = mwldnlm
93 LDFLAGS = -nostdlib $(OBJS) $(PRELUDE) $(LDLIBS) -o $@ -commandfile
94 LIBEXT  = lib
95 CFLAGS  += -gccinc -inline off -opt nointrinsics -proc 586
96 CFLAGS  += -relax_pointers
97 #CFLAGS += -w on
98 ifeq ($(LIBARCH),LIBC)
99         PRELUDE = $(SDK_LIBC)/imports/libcpre.o
100         CFLAGS += -align 4
101 else
102         # PRELUDE = $(SDK_CLIB)/imports/clibpre.o
103         # to avoid the __init_* / __deinit_* whoes dont use prelude from NDK
104         PRELUDE = "$(MWCW_PATH)/libraries/runtime/prelude.obj"
105         # CFLAGS += -include "$(MWCW_PATH)/headers/nlm_clib_prefix.h"
106         CFLAGS += -align 1
107 endif
108 else
109 LD      = nlmconv
110 LDFLAGS = -T
111 LIBEXT  = a
112 CFLAGS  += -fno-builtin -fpcc-struct-return -fno-strict-aliasing
113 CFLAGS  += -Wall # -pedantic
114 ifeq ($(LIBARCH),LIBC)
115         PRELUDE = $(SDK_LIBC)/imports/libcpre.gcc.o
116 else
117         # PRELUDE = $(SDK_CLIB)/imports/clibpre.gcc.o
118         # to avoid the __init_* / __deinit_* whoes dont use prelude from NDK
119         # http://www.gknw.net/development/mk_nlm/gcc_pre.zip
120         PRELUDE = $(NDK_ROOT)/pre/prelude.o
121         CFLAGS += -include $(NDKBASE)/nlmconv/genlm.h
122 endif
123 endif
124
125 NDK_ROOT = $(NDKBASE)/ndk
126 SDK_CLIB = $(NDK_ROOT)/nwsdk
127 SDK_LIBC = $(NDK_ROOT)/libc
128 SDK_LDAP = $(NDK_ROOT)/cldapsdk/netware
129 CURL_INC = ../include
130 CURL_LIB = ../lib
131 ARES_LIB = ../ares
132
133 INCLUDES = -I$(CURL_INC) -I$(CURL_LIB)
134
135 ifdef LINK_STATIC
136         LDLIBS  = $(CURL_LIB)/libcurl.$(LIBEXT)
137 ifdef WITH_ARES
138         LDLIBS += $(ARES_LIB)/libcares.$(LIBEXT)
139 endif
140 else
141         MODULES = libcurl.nlm
142         IMPORTS = @$(CURL_LIB)/libcurl.imp
143 endif
144 ifdef WITH_ZLIB
145         INCLUDES += -I$(ZLIB_PATH)
146 ifdef LINK_STATIC
147         LDLIBS += $(ZLIB_PATH)/nw/$(LIBARCH)/libz.$(LIBEXT)
148 else
149         MODULES += libz.nlm
150         IMPORTS += @$(ZLIB_PATH)/nw/$(LIBARCH)/libz.imp
151 endif
152 endif
153 ifdef WITH_SSH2
154         INCLUDES += -I$(LIBSSH2_PATH)/include
155 ifdef LINK_STATIC
156         LDLIBS += $(LIBSSH2_PATH)/nw/libssh2.$(LIBEXT)
157 else
158         MODULES += libssh2.nlm
159         IMPORTS += @$(LIBSSH2_PATH)/nw/libssh2.imp
160 endif
161 endif
162 ifdef WITH_SSL
163         LDLIBS += $(OPENSSL_PATH)/out_nw_$(LIBARCH_L)/ssl.$(LIBEXT)
164         LDLIBS += $(OPENSSL_PATH)/out_nw_$(LIBARCH_L)/crypto.$(LIBEXT)
165         IMPORTS += GetProcessSwitchCount RunningProcess
166 endif
167
168 ifeq ($(LIBARCH),LIBC)
169         INCLUDES += -I$(SDK_LIBC)/include -I$(SDK_LIBC)/include/nks
170         # INCLUDES += -I$(SDK_LIBC)/include/winsock
171         # INCLUDES += -I$(SDK_LDAP)/libc/inc
172         CFLAGS += -D_POSIX_SOURCE
173         # CFLAGS += -D__ANSIC__
174 else
175         INCLUDES += -I$(SDK_CLIB)/include/nlm -I$(SDK_CLIB)/include
176         # INCLUDES += -I$(SDK_LDAP)/clib/inc
177         CFLAGS += -DNETDB_USE_INTERNET
178 endif
179 CFLAGS  += $(INCLUDES)
180
181 ifeq ($(MTSAFE),YES)
182         XDCOPT = -n
183 endif
184 ifeq ($(MTSAFE),NO)
185         XDCOPT = -u
186 endif
187 ifdef XDCOPT
188         XDCDATA = $(OBJDIR)/$(TARGET).xdc
189 endif
190
191 ifeq ($(findstring linux,$(OSTYPE)),linux)
192 DL      = '
193 DS      = /
194 #-include $(NDKBASE)/nlmconv/ncpfs.inc
195 else
196 DS      = \\
197 endif
198
199 # Makefile.inc provides the CSOURCES and HHEADERS defines
200 include Makefile.inc
201
202 OBJX    := $(patsubst %.c,$(OBJDIR)/%.o,$(notdir $(strip $(CURLX_ONES))))
203 OBJS    := $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CURL_SOURCES))) $(OBJX)
204
205 vpath %.c $(CURL_LIB)
206
207 all: prebuild $(TARGET).nlm
208
209 prebuild: $(OBJDIR) $(OBJDIR)/version.inc config.h
210
211 $(OBJDIR)/%.o: %.c
212 #       @echo Compiling $<
213         $(CC) $(CFLAGS) -c $< -o $@
214
215 $(OBJDIR)/version.inc: $(CURL_INC)/curl/curlver.h $(OBJDIR)
216         @echo Creating $@
217         @$(AWK) -f ../packages/NetWare/get_ver.awk $< > $@
218
219 dist: all
220         -$(RM) $(OBJDIR)/*.o $(OBJDIR)/$(TARGET).map $(OBJDIR)/$(TARGET).ncv
221         -$(RM) $(OBJDIR)/$(TARGET).def $(OBJDIR)/version.inc $(XDCDATA)
222
223 install: $(INSTDIR) all
224         @-$(CP) ../docs/$(TARGET).pdf $(INSTDIR)
225         @$(CP) $(TARGET).nlm $(INSTDIR)
226
227 clean:
228 ifeq "$(wildcard hugehelp.c.cvs)" "hugehelp.c.cvs"
229         -$(RM) hugehelp.c
230 endif
231         -$(RM) config.h
232         -$(RM) -r $(OBJDIR)
233
234 distclean: clean
235         -$(RM) -r $(TARGET).nlm
236
237 $(INSTDIR):
238         @mkdir $(INSTDIR)
239
240 $(OBJDIR):
241         @mkdir $(OBJDIR)
242
243 $(TARGET).nlm: $(OBJS) $(OBJX) $(OBJDIR)/$(TARGET).def $(XDCDATA)
244         @echo Linking $@
245         @-$(RM) $@
246         @$(LD) $(LDFLAGS) $(OBJDIR)/$(TARGET).def
247
248 $(OBJDIR)/%.xdc: Makefile.netware
249         @echo Creating $@
250         @$(MPKXDC) $(XDCOPT) $@
251
252 $(OBJDIR)/%.def: Makefile.netware
253         @echo $(DL)# DEF file for linking with $(LD)$(DL) > $@
254         @echo $(DL)# Do not edit this file - it is created by make!$(DL) >> $@
255         @echo $(DL)# All your changes will be lost!!$(DL) >> $@
256         @echo $(DL)#$(DL) >> $@
257         @echo $(DL)copyright "$(COPYR)"$(DL) >> $@
258         @echo $(DL)description "$(DESCR)"$(DL) >> $@
259         @echo $(DL)version $(VERSION)$(DL) >> $@
260 ifdef NLMTYPE
261         @echo $(DL)type $(NLMTYPE)$(DL) >> $@
262 endif
263 ifdef STACK
264         @echo $(DL)stack $(STACK)$(DL) >> $@
265 endif
266 ifdef SCREEN
267         @echo $(DL)screenname "$(SCREEN)"$(DL) >> $@
268 else
269         @echo $(DL)screenname "DEFAULT"$(DL) >> $@
270 endif
271 ifneq ($(DB),NDEBUG)
272         @echo $(DL)debug$(DL) >> $@
273 endif
274         @echo $(DL)threadname "$(TARGET)"$(DL) >> $@
275 ifdef XDCDATA
276         @echo $(DL)xdcdata $(XDCDATA)$(DL) >> $@
277 endif
278 ifeq ($(LDRING),0)
279         @echo $(DL)flag_on 16$(DL) >> $@
280 endif
281 ifeq ($(LDRING),3)
282         @echo $(DL)flag_on 512$(DL) >> $@
283 endif
284 ifeq ($(LIBARCH),CLIB)
285         @echo $(DL)start _Prelude$(DL) >> $@
286         @echo $(DL)exit _Stop$(DL) >> $@
287         @echo $(DL)import @$(SDK_CLIB)/imports/clib.imp$(DL) >> $@
288         @echo $(DL)import @$(SDK_CLIB)/imports/threads.imp$(DL) >> $@
289         @echo $(DL)import @$(SDK_CLIB)/imports/nlmlib.imp$(DL) >> $@
290         @echo $(DL)import @$(SDK_CLIB)/imports/socklib.imp$(DL) >> $@
291 #       @echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapsdk.imp$(DL) >> $@
292 #       @echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapssl.imp$(DL) >> $@
293 #       @echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapx.imp$(DL) >> $@
294         @echo $(DL)module clib$(DL) >> $@
295 else
296         @echo $(DL)flag_on 64$(DL) >> $@
297         @echo $(DL)pseudopreemption$(DL) >> $@
298         @echo $(DL)start _LibCPrelude$(DL) >> $@
299         @echo $(DL)exit _LibCPostlude$(DL) >> $@
300         @echo $(DL)check _LibCCheckUnload$(DL) >> $@
301         @echo $(DL)import @$(SDK_LIBC)/imports/libc.imp$(DL) >> $@
302         @echo $(DL)import @$(SDK_LIBC)/imports/netware.imp$(DL) >> $@
303 #       @echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapsdk.imp$(DL) >> $@
304 #       @echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapssl.imp$(DL) >> $@
305 #       @echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapx.imp$(DL) >> $@
306         @echo $(DL)module libc$(DL) >> $@
307 endif
308 ifdef MODULES
309         @echo $(DL)module $(MODULES)$(DL) >> $@
310 endif
311 ifdef EXPORTS
312         @echo $(DL)export $(EXPORTS)$(DL) >> $@
313 endif
314 ifdef IMPORTS
315         @echo $(DL)import $(IMPORTS)$(DL) >> $@
316 endif
317 ifeq ($(LD),nlmconv)
318         @echo $(DL)input $(OBJS)$(DL) >> $@
319         @echo $(DL)input $(PRELUDE)$(DL) >> $@
320 ifdef LDLIBS
321         @echo $(DL)input $(LDLIBS)$(DL) >> $@
322 endif
323         @echo $(DL)output $(TARGET).nlm$(DL) >> $@
324 endif
325
326 config.h: Makefile.netware
327         @echo Creating $@
328         @echo $(DL)/* $@ for NetWare target.$(DL) > $@
329         @echo $(DL)** Do not edit this file - it is created by make!$(DL) >> $@
330         @echo $(DL)** All your changes will be lost!!$(DL) >> $@
331         @echo $(DL)*/$(DL) >> $@
332         @echo $(DL)#ifndef NETWARE$(DL) >> $@
333         @echo $(DL)#error This $(notdir $@) is created for NetWare platform!$(DL) >> $@
334         @echo $(DL)#endif$(DL) >> $@
335         @echo $(DL)#define VERSION "$(LIBCURL_VERSION_STR)"$(DL) >> $@
336         @echo $(DL)#define PACKAGE_BUGREPORT "a suitable curl mailing list => http://curl.haxx.se/mail/"$(DL) >> $@
337 ifeq ($(LIBARCH),CLIB)
338         @echo $(DL)#define OS "i586-pc-clib-NetWare"$(DL) >> $@
339         @echo $(DL)#define NETDB_USE_INTERNET 1$(DL) >> $@
340         @echo $(DL)#define HAVE_STRICMP 1$(DL) >> $@
341         @echo $(DL)#define RECV_TYPE_ARG1 int$(DL) >> $@
342         @echo $(DL)#define RECV_TYPE_ARG2 char *$(DL) >> $@
343         @echo $(DL)#define RECV_TYPE_ARG3 int$(DL) >> $@
344         @echo $(DL)#define RECV_TYPE_ARG4 int$(DL) >> $@
345         @echo $(DL)#define RECV_TYPE_RETV int$(DL) >> $@
346         @echo $(DL)#define SEND_QUAL_ARG2$(DL) >> $@
347         @echo $(DL)#define SEND_TYPE_ARG1 int$(DL) >> $@
348         @echo $(DL)#define SEND_TYPE_ARG2 char *$(DL) >> $@
349         @echo $(DL)#define SEND_TYPE_ARG3 int$(DL) >> $@
350         @echo $(DL)#define SEND_TYPE_ARG4 int$(DL) >> $@
351         @echo $(DL)#define SEND_TYPE_RETV int$(DL) >> $@
352         @echo $(DL)#define socklen_t int$(DL) >> $@
353         @echo $(DL)#define pressanykey PressAnyKeyToContinue$(DL) >> $@
354 else
355         @echo $(DL)#define OS "i586-pc-libc-NetWare"$(DL) >> $@
356         @echo $(DL)#define HAVE_DLFCN_H 1$(DL) >> $@
357         @echo $(DL)#define HAVE_DLOPEN 1$(DL) >> $@
358         @echo $(DL)#define HAVE_FTRUNCATE 1$(DL) >> $@
359         @echo $(DL)#define HAVE_GETTIMEOFDAY 1$(DL) >> $@
360         @echo $(DL)#define HAVE_INET_PTON 1$(DL) >> $@
361         @echo $(DL)#define HAVE_INTTYPES_H 1$(DL) >> $@
362         @echo $(DL)#define HAVE_LIMITS_H 1$(DL) >> $@
363         @echo $(DL)#define HAVE_LONGLONG 1$(DL) >> $@
364         @echo $(DL)#define HAVE_STDINT_H 1$(DL) >> $@
365         @echo $(DL)#define HAVE_STRCASECMP 1$(DL) >> $@
366         @echo $(DL)#define HAVE_STRLCAT 1$(DL) >> $@
367         @echo $(DL)#define HAVE_STRLCPY 1$(DL) >> $@
368         @echo $(DL)#define HAVE_SYS_PARAM_H 1$(DL) >> $@
369         @echo $(DL)#define HAVE_SYS_SELECT_H 1$(DL) >> $@
370         @echo $(DL)#define HAVE_TERMIOS_H 1$(DL) >> $@
371         @echo $(DL)#define RECV_TYPE_ARG1 int$(DL) >> $@
372         @echo $(DL)#define RECV_TYPE_ARG2 void *$(DL) >> $@
373         @echo $(DL)#define RECV_TYPE_ARG3 size_t$(DL) >> $@
374         @echo $(DL)#define RECV_TYPE_ARG4 int$(DL) >> $@
375         @echo $(DL)#define RECV_TYPE_RETV ssize_t$(DL) >> $@
376         @echo $(DL)#define SEND_QUAL_ARG2$(DL) >> $@
377         @echo $(DL)#define SEND_TYPE_ARG1 int$(DL) >> $@
378         @echo $(DL)#define SEND_TYPE_ARG2 void *$(DL) >> $@
379         @echo $(DL)#define SEND_TYPE_ARG3 size_t$(DL) >> $@
380         @echo $(DL)#define SEND_TYPE_ARG4 int$(DL) >> $@
381         @echo $(DL)#define SEND_TYPE_RETV ssize_t$(DL) >> $@
382 ifdef ENABLE_IPV6
383         @echo $(DL)#define ENABLE_IPV6 1$(DL) >> $@
384 endif
385 endif
386         @echo $(DL)#define USE_MANUAL 1$(DL) >> $@
387         @echo $(DL)#define HAVE_ARPA_INET_H 1$(DL) >> $@
388         @echo $(DL)#define HAVE_ASSERT_H 1$(DL) >> $@
389         @echo $(DL)#define HAVE_ERR_H 1$(DL) >> $@
390         @echo $(DL)#define HAVE_FCNTL_H 1$(DL) >> $@
391         @echo $(DL)#define HAVE_FIONBIO 1$(DL) >> $@
392         @echo $(DL)#define HAVE_GETHOSTBYADDR 1$(DL) >> $@
393         @echo $(DL)#define HAVE_INET_ADDR 1$(DL) >> $@
394         @echo $(DL)#define HAVE_INET_NTOA 1$(DL) >> $@
395         @echo $(DL)#define HAVE_LL 1$(DL) >> $@
396         @echo $(DL)#define HAVE_MALLOC_H 1$(DL) >> $@
397         @echo $(DL)#define HAVE_NETINET_IN_H 1$(DL) >> $@
398         @echo $(DL)#define HAVE_RECV 1$(DL) >> $@
399         @echo $(DL)#define HAVE_SELECT 1$(DL) >> $@
400         @echo $(DL)#define HAVE_SEND 1$(DL) >> $@
401         @echo $(DL)#define HAVE_SETJMP_H 1$(DL) >> $@
402         @echo $(DL)#define HAVE_SIGNAL 1$(DL) >> $@
403         @echo $(DL)#define HAVE_SIGNAL_H 1$(DL) >> $@
404         @echo $(DL)#define HAVE_SIG_ATOMIC_T 1$(DL) >> $@
405         @echo $(DL)#define HAVE_SOCKET 1$(DL) >> $@
406         @echo $(DL)#define HAVE_STDLIB_H 1$(DL) >> $@
407         @echo $(DL)#define HAVE_STRDUP 1$(DL) >> $@
408         @echo $(DL)#define HAVE_STRFTIME 1$(DL) >> $@
409         @echo $(DL)#define HAVE_STRING_H 1$(DL) >> $@
410         @echo $(DL)#define HAVE_STRSTR 1$(DL) >> $@
411         @echo $(DL)#define HAVE_STRUCT_TIMEVAL 1$(DL) >> $@
412         @echo $(DL)#define HAVE_SYS_STAT_H 1$(DL) >> $@
413         @echo $(DL)#define HAVE_SYS_TIME_H 1$(DL) >> $@
414         @echo $(DL)#define HAVE_TIME_H 1$(DL) >> $@
415         @echo $(DL)#define HAVE_UNAME 1$(DL) >> $@
416         @echo $(DL)#define HAVE_UNISTD_H 1$(DL) >> $@
417         @echo $(DL)#define HAVE_UTIME 1$(DL) >> $@
418         @echo $(DL)#define HAVE_UTIME_H 1$(DL) >> $@
419         @echo $(DL)#define RETSIGTYPE void$(DL) >> $@
420         @echo $(DL)#define SIZEOF_CURL_OFF_T 4$(DL) >> $@
421         @echo $(DL)#define STDC_HEADERS 1$(DL) >> $@
422         @echo $(DL)#define TIME_WITH_SYS_TIME 1$(DL) >> $@
423 ifdef NW_WINSOCK
424         @echo $(DL)#define HAVE_CLOSESOCKET 1$(DL) >> $@
425 else
426         @echo $(DL)#define HAVE_SYS_TYPES_H 1$(DL) >> $@
427         @echo $(DL)#define HAVE_SYS_SOCKET_H 1$(DL) >> $@
428         @echo $(DL)#define HAVE_SYS_SOCKIO_H 1$(DL) >> $@
429         @echo $(DL)#define HAVE_NETDB_H 1$(DL) >> $@
430 endif
431 ifdef WITH_ARES
432         @echo $(DL)#define USE_ARES 1$(DL) >> $@
433 endif
434 ifdef WITH_ZLIB
435         @echo $(DL)#define HAVE_ZLIB_H 1$(DL) >> $@
436         @echo $(DL)#define HAVE_LIBZ 1$(DL) >> $@
437 endif
438 ifdef WITH_SSL
439         @echo $(DL)#define USE_SSLEAY 1$(DL) >> $@
440         @echo $(DL)#define HAVE_OPENSSL_X509_H 1$(DL) >> $@
441         @echo $(DL)#define HAVE_OPENSSL_SSL_H 1$(DL) >> $@
442         @echo $(DL)#define HAVE_OPENSSL_RSA_H 1$(DL) >> $@
443         @echo $(DL)#define HAVE_OPENSSL_PEM_H 1$(DL) >> $@
444         @echo $(DL)#define HAVE_OPENSSL_ERR_H 1$(DL) >> $@
445         @echo $(DL)#define HAVE_OPENSSL_CRYPTO_H 1$(DL) >> $@
446         @echo $(DL)#define HAVE_OPENSSL_ENGINE_H 1$(DL) >> $@
447         @echo $(DL)#define HAVE_LIBSSL 1$(DL) >> $@
448         @echo $(DL)#define HAVE_LIBCRYPTO 1$(DL) >> $@
449         @echo $(DL)#define OPENSSL_NO_KRB5 1$(DL) >> $@
450 endif
451 ifdef WITH_SSH2
452         @echo $(DL)#define USE_LIBSSH2 1$(DL) >> $@
453         @echo $(DL)#define HAVE_LIBSSH2_H 1$(DL) >> $@
454 endif
455         @echo $(DL)#ifdef __GNUC__$(DL) >> $@
456         @echo $(DL)#define HAVE_VARIADIC_MACROS_GCC 1$(DL) >> $@
457         @echo $(DL)#else$(DL) >> $@
458         @echo $(DL)#define HAVE_VARIADIC_MACROS_C99 1$(DL) >> $@
459         @echo $(DL)#endif$(DL) >> $@
460 ifdef OLD_NOVELLSDK
461         @echo $(DL)#define socklen_t int$(DL) >> $@
462 endif
463
464 hugehelp.c:
465         @echo Creating $@
466         @$(CP) hugehelp.c.cvs $@
467
468 $(ARES_LIB)/libcares.$(LIBEXT):
469         $(MAKE) -C $(ARES_LIB) -f Makefile.netware lib
470
471