some more makefile tweaks and hacks to deal with both lib architectures.
[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 else
138         MODULES = libcurl.nlm
139         IMPORTS = @$(CURL_LIB)/libcurl.imp
140 endif
141 ifdef WITH_ZLIB
142         INCLUDES += -I$(ZLIB_PATH)
143 ifdef LINK_STATIC
144         LDLIBS += $(ZLIB_PATH)/nw/$(LIBARCH)/libz.$(LIBEXT)
145 else
146         MODULES += libz.nlm
147         IMPORTS += @$(ZLIB_PATH)/nw/$(LIBARCH)/libz.imp
148 endif
149 endif
150 ifdef WITH_SSH2
151         INCLUDES += -I$(LIBSSH2_PATH)/include
152 ifdef LINK_STATIC
153         LDLIBS += $(LIBSSH2_PATH)/nw/libssh2.$(LIBEXT)
154 else
155         MODULES += libssh2.nlm
156         IMPORTS += @$(LIBSSH2_PATH)/nw/libssh2.imp
157 endif
158 endif
159 ifdef WITH_SSL
160         LDLIBS += $(OPENSSL_PATH)/out_nw_$(LIBARCH_L)/ssl.$(LIBEXT)
161         LDLIBS += $(OPENSSL_PATH)/out_nw_$(LIBARCH_L)/crypto.$(LIBEXT)
162         IMPORTS += GetProcessSwitchCount RunningProcess
163 endif
164
165 ifeq ($(LIBARCH),LIBC)
166         INCLUDES += -I$(SDK_LIBC)/include -I$(SDK_LIBC)/include/nks
167         # INCLUDES += -I$(SDK_LIBC)/include/winsock
168         # INCLUDES += -I$(SDK_LDAP)/libc/inc
169         CFLAGS += -D_POSIX_SOURCE
170         # CFLAGS += -D__ANSIC__
171 else
172         INCLUDES += -I$(SDK_CLIB)/include/nlm -I$(SDK_CLIB)/include
173         # INCLUDES += -I$(SDK_LDAP)/clib/inc
174         CFLAGS += -DNETDB_USE_INTERNET
175 endif
176 CFLAGS  += $(INCLUDES)
177
178 ifeq ($(MTSAFE),YES)
179         XDCOPT = -n
180 endif
181 ifeq ($(MTSAFE),NO)
182         XDCOPT = -u
183 endif
184 ifdef XDCOPT
185         XDCDATA = $(OBJDIR)/$(TARGET).xdc
186 endif
187
188 ifeq ($(findstring linux,$(OSTYPE)),linux)
189 DL      = '
190 DS      = /
191 #-include $(NDKBASE)/nlmconv/ncpfs.inc
192 else
193 DS      = \\
194 endif
195
196 # Makefile.inc provides the CSOURCES and HHEADERS defines
197 include Makefile.inc
198
199 OBJX    := $(patsubst %.c,$(OBJDIR)/%.o,$(notdir $(strip $(CURLX_ONES))))
200 OBJS    := $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CURL_SOURCES))) $(OBJX)
201
202 vpath %.c $(CURL_LIB)
203
204 all: prebuild $(TARGET).nlm 
205
206 prebuild: $(OBJDIR) $(OBJDIR)/version.inc config.h
207
208 $(OBJDIR)/%.o: %.c
209 #       @echo Compiling $<
210         $(CC) $(CFLAGS) -c $< -o $@
211
212 $(OBJDIR)/version.inc: $(CURL_INC)/curl/curlver.h $(OBJDIR)
213         @echo Creating $@
214         @$(AWK) -f ../packages/NetWare/get_ver.awk $< > $@
215
216 dist: all
217         -$(RM) $(OBJDIR)/*.o $(OBJDIR)/$(TARGET).map $(OBJDIR)/$(TARGET).ncv
218         -$(RM) $(OBJDIR)/$(TARGET).def $(OBJDIR)/version.inc $(XDCDATA)
219
220 install: $(INSTDIR) all
221         @-$(CP) ../docs/$(TARGET).pdf $(INSTDIR)
222         @$(CP) $(TARGET).nlm $(INSTDIR)
223
224 clean:
225 ifeq "$(wildcard hugehelp.c.cvs)" "hugehelp.c.cvs"
226         -$(RM) hugehelp.c
227 endif
228         -$(RM) config.h
229         -$(RM) -r $(OBJDIR)
230
231 distclean: clean
232         -$(RM) -r $(TARGET).nlm
233
234 $(INSTDIR):
235         @mkdir $(INSTDIR)
236
237 $(OBJDIR):
238         @mkdir $(OBJDIR)
239
240 $(TARGET).nlm: $(OBJS) $(OBJX) $(OBJDIR)/$(TARGET).def $(XDCDATA)
241         @echo Linking $@
242         @-$(RM) $@
243         @$(LD) $(LDFLAGS) $(OBJDIR)/$(TARGET).def
244
245 $(OBJDIR)/%.xdc: Makefile.netware
246         @echo Creating $@
247         @$(MPKXDC) $(XDCOPT) $@
248
249 $(OBJDIR)/%.def: Makefile.netware
250         @echo $(DL)# DEF file for linking with $(LD)$(DL) > $@
251         @echo $(DL)# Do not edit this file - it is created by make!$(DL) >> $@
252         @echo $(DL)# All your changes will be lost!!$(DL) >> $@
253         @echo $(DL)#$(DL) >> $@
254         @echo $(DL)copyright "$(COPYR)"$(DL) >> $@
255         @echo $(DL)description "$(DESCR)"$(DL) >> $@
256         @echo $(DL)version $(VERSION)$(DL) >> $@
257 ifdef NLMTYPE
258         @echo $(DL)type $(NLMTYPE)$(DL) >> $@
259 endif
260 ifdef STACK
261         @echo $(DL)stack $(STACK)$(DL) >> $@
262 endif
263 ifdef SCREEN
264         @echo $(DL)screenname "$(SCREEN)"$(DL) >> $@
265 else
266         @echo $(DL)screenname "DEFAULT"$(DL) >> $@
267 endif
268 ifneq ($(DB),NDEBUG)
269         @echo $(DL)debug$(DL) >> $@
270 endif
271         @echo $(DL)threadname "$(TARGET)"$(DL) >> $@
272 ifdef XDCDATA
273         @echo $(DL)xdcdata $(XDCDATA)$(DL) >> $@
274 endif
275 ifeq ($(LDRING),0)
276         @echo $(DL)flag_on 16$(DL) >> $@
277 endif
278 ifeq ($(LDRING),3)
279         @echo $(DL)flag_on 512$(DL) >> $@
280 endif
281 ifeq ($(LIBARCH),CLIB)
282         @echo $(DL)start _Prelude$(DL) >> $@
283         @echo $(DL)exit _Stop$(DL) >> $@
284         @echo $(DL)import @$(SDK_CLIB)/imports/clib.imp$(DL) >> $@
285         @echo $(DL)import @$(SDK_CLIB)/imports/threads.imp$(DL) >> $@
286         @echo $(DL)import @$(SDK_CLIB)/imports/nlmlib.imp$(DL) >> $@
287         @echo $(DL)import @$(SDK_CLIB)/imports/socklib.imp$(DL) >> $@
288 #       @echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapsdk.imp$(DL) >> $@
289 #       @echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapssl.imp$(DL) >> $@
290 #       @echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapx.imp$(DL) >> $@
291         @echo $(DL)module clib$(DL) >> $@
292 else
293         @echo $(DL)flag_on 64$(DL) >> $@
294         @echo $(DL)pseudopreemption$(DL) >> $@
295         @echo $(DL)start _LibCPrelude$(DL) >> $@
296         @echo $(DL)exit _LibCPostlude$(DL) >> $@
297         @echo $(DL)check _LibCCheckUnload$(DL) >> $@
298         @echo $(DL)import @$(SDK_LIBC)/imports/libc.imp$(DL) >> $@
299         @echo $(DL)import @$(SDK_LIBC)/imports/netware.imp$(DL) >> $@
300 #       @echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapsdk.imp$(DL) >> $@
301 #       @echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapssl.imp$(DL) >> $@
302 #       @echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapx.imp$(DL) >> $@
303         @echo $(DL)module libc$(DL) >> $@
304 endif
305 ifdef MODULES
306         @echo $(DL)module $(MODULES)$(DL) >> $@
307 endif
308 ifdef EXPORTS
309         @echo $(DL)export $(EXPORTS)$(DL) >> $@
310 endif
311 ifdef IMPORTS
312         @echo $(DL)import $(IMPORTS)$(DL) >> $@
313 endif
314 ifeq ($(LD),nlmconv)
315         @echo $(DL)input $(OBJS)$(DL) >> $@
316         @echo $(DL)input $(PRELUDE)$(DL) >> $@
317 ifdef LDLIBS
318         @echo $(DL)input $(LDLIBS)$(DL) >> $@
319 endif
320         @echo $(DL)output $(TARGET).nlm$(DL) >> $@
321 endif
322
323 config.h: Makefile.netware
324         @echo Creating $@
325         @echo $(DL)/* $@ for NetWare target.$(DL) > $@
326         @echo $(DL)** Do not edit this file - it is created by make!$(DL) >> $@
327         @echo $(DL)** All your changes will be lost!!$(DL) >> $@
328         @echo $(DL)*/$(DL) >> $@
329         @echo $(DL)#ifndef NETWARE$(DL) >> $@
330         @echo $(DL)#error This $(notdir $@) is created for NetWare platform!$(DL) >> $@
331         @echo $(DL)#endif$(DL) >> $@
332         @echo $(DL)#define VERSION "$(LIBCURL_VERSION_STR)"$(DL) >> $@
333         @echo $(DL)#define PACKAGE_BUGREPORT "a suitable curl mailing list => http://curl.haxx.se/mail/"$(DL) >> $@
334 ifeq ($(LIBARCH),CLIB)
335         @echo $(DL)#define OS "i586-pc-clib-NetWare"$(DL) >> $@
336         @echo $(DL)#define NETDB_USE_INTERNET 1$(DL) >> $@
337         @echo $(DL)#define HAVE_STRICMP 1$(DL) >> $@
338         @echo $(DL)#define RECV_TYPE_ARG1 int$(DL) >> $@
339         @echo $(DL)#define RECV_TYPE_ARG2 char *$(DL) >> $@
340         @echo $(DL)#define RECV_TYPE_ARG3 int$(DL) >> $@
341         @echo $(DL)#define RECV_TYPE_ARG4 int$(DL) >> $@
342         @echo $(DL)#define RECV_TYPE_RETV int$(DL) >> $@
343         @echo $(DL)#define SEND_QUAL_ARG2$(DL) >> $@
344         @echo $(DL)#define SEND_TYPE_ARG1 int$(DL) >> $@
345         @echo $(DL)#define SEND_TYPE_ARG2 char *$(DL) >> $@
346         @echo $(DL)#define SEND_TYPE_ARG3 int$(DL) >> $@
347         @echo $(DL)#define SEND_TYPE_ARG4 int$(DL) >> $@
348         @echo $(DL)#define SEND_TYPE_RETV int$(DL) >> $@
349         @echo $(DL)#define socklen_t int$(DL) >> $@
350         @echo $(DL)#define pressanykey PressAnyKeyToContinue$(DL) >> $@
351 else
352         @echo $(DL)#define OS "i586-pc-libc-NetWare"$(DL) >> $@
353         @echo $(DL)#define HAVE_DLFCN_H 1$(DL) >> $@
354         @echo $(DL)#define HAVE_DLOPEN 1$(DL) >> $@
355         @echo $(DL)#define HAVE_FTRUNCATE 1$(DL) >> $@
356         @echo $(DL)#define HAVE_GETTIMEOFDAY 1$(DL) >> $@
357         @echo $(DL)#define HAVE_INET_PTON 1$(DL) >> $@
358         @echo $(DL)#define HAVE_INTTYPES_H 1$(DL) >> $@
359         @echo $(DL)#define HAVE_LIMITS_H 1$(DL) >> $@
360         @echo $(DL)#define HAVE_LONGLONG 1$(DL) >> $@
361         @echo $(DL)#define HAVE_STDINT_H 1$(DL) >> $@
362         @echo $(DL)#define HAVE_STRCASECMP 1$(DL) >> $@
363         @echo $(DL)#define HAVE_STRLCAT 1$(DL) >> $@
364         @echo $(DL)#define HAVE_STRLCPY 1$(DL) >> $@
365         @echo $(DL)#define HAVE_SYS_PARAM_H 1$(DL) >> $@
366         @echo $(DL)#define HAVE_SYS_SELECT_H 1$(DL) >> $@
367         @echo $(DL)#define HAVE_TERMIOS_H 1$(DL) >> $@
368         @echo $(DL)#define RECV_TYPE_ARG1 int$(DL) >> $@
369         @echo $(DL)#define RECV_TYPE_ARG2 void *$(DL) >> $@
370         @echo $(DL)#define RECV_TYPE_ARG3 size_t$(DL) >> $@
371         @echo $(DL)#define RECV_TYPE_ARG4 int$(DL) >> $@
372         @echo $(DL)#define RECV_TYPE_RETV ssize_t$(DL) >> $@
373         @echo $(DL)#define SEND_QUAL_ARG2$(DL) >> $@
374         @echo $(DL)#define SEND_TYPE_ARG1 int$(DL) >> $@
375         @echo $(DL)#define SEND_TYPE_ARG2 void *$(DL) >> $@
376         @echo $(DL)#define SEND_TYPE_ARG3 size_t$(DL) >> $@
377         @echo $(DL)#define SEND_TYPE_ARG4 int$(DL) >> $@
378         @echo $(DL)#define SEND_TYPE_RETV ssize_t$(DL) >> $@
379 ifdef ENABLE_IPV6
380         @echo $(DL)#define ENABLE_IPV6 1$(DL) >> $@
381 endif
382 endif
383         @echo $(DL)#define USE_MANUAL 1$(DL) >> $@
384         @echo $(DL)#define HAVE_ARPA_INET_H 1$(DL) >> $@
385         @echo $(DL)#define HAVE_ASSERT_H 1$(DL) >> $@
386         @echo $(DL)#define HAVE_ERR_H 1$(DL) >> $@
387         @echo $(DL)#define HAVE_FCNTL_H 1$(DL) >> $@
388         @echo $(DL)#define HAVE_FIONBIO 1$(DL) >> $@
389         @echo $(DL)#define HAVE_GETHOSTBYADDR 1$(DL) >> $@
390         @echo $(DL)#define HAVE_INET_ADDR 1$(DL) >> $@
391         @echo $(DL)#define HAVE_INET_NTOA 1$(DL) >> $@
392         @echo $(DL)#define HAVE_LL 1$(DL) >> $@
393         @echo $(DL)#define HAVE_MALLOC_H 1$(DL) >> $@
394         @echo $(DL)#define HAVE_NETINET_IN_H 1$(DL) >> $@
395         @echo $(DL)#define HAVE_RECV 1$(DL) >> $@
396         @echo $(DL)#define HAVE_SELECT 1$(DL) >> $@
397         @echo $(DL)#define HAVE_SEND 1$(DL) >> $@
398         @echo $(DL)#define HAVE_SETJMP_H 1$(DL) >> $@
399         @echo $(DL)#define HAVE_SIGNAL 1$(DL) >> $@
400         @echo $(DL)#define HAVE_SIGNAL_H 1$(DL) >> $@
401         @echo $(DL)#define HAVE_SIG_ATOMIC_T 1$(DL) >> $@
402         @echo $(DL)#define HAVE_SOCKET 1$(DL) >> $@
403         @echo $(DL)#define HAVE_STDLIB_H 1$(DL) >> $@
404         @echo $(DL)#define HAVE_STRDUP 1$(DL) >> $@
405         @echo $(DL)#define HAVE_STRFTIME 1$(DL) >> $@
406         @echo $(DL)#define HAVE_STRING_H 1$(DL) >> $@
407         @echo $(DL)#define HAVE_STRSTR 1$(DL) >> $@
408         @echo $(DL)#define HAVE_STRUCT_TIMEVAL 1$(DL) >> $@
409         @echo $(DL)#define HAVE_SYS_STAT_H 1$(DL) >> $@
410         @echo $(DL)#define HAVE_SYS_TIME_H 1$(DL) >> $@
411         @echo $(DL)#define HAVE_TIME_H 1$(DL) >> $@
412         @echo $(DL)#define HAVE_UNAME 1$(DL) >> $@
413         @echo $(DL)#define HAVE_UNISTD_H 1$(DL) >> $@
414         @echo $(DL)#define HAVE_UTIME 1$(DL) >> $@
415         @echo $(DL)#define HAVE_UTIME_H 1$(DL) >> $@
416         @echo $(DL)#define RETSIGTYPE void$(DL) >> $@
417         @echo $(DL)#define SIZEOF_CURL_OFF_T 4$(DL) >> $@
418         @echo $(DL)#define STDC_HEADERS 1$(DL) >> $@
419         @echo $(DL)#define TIME_WITH_SYS_TIME 1$(DL) >> $@
420 ifdef NW_WINSOCK
421         @echo $(DL)#define HAVE_CLOSESOCKET 1$(DL) >> $@
422 else
423         @echo $(DL)#define HAVE_SYS_TYPES_H 1$(DL) >> $@
424         @echo $(DL)#define HAVE_SYS_SOCKET_H 1$(DL) >> $@
425         @echo $(DL)#define HAVE_SYS_SOCKIO_H 1$(DL) >> $@
426         @echo $(DL)#define HAVE_NETDB_H 1$(DL) >> $@
427 endif
428 ifdef WITH_ARES
429         @echo $(DL)#define USE_ARES 1$(DL) >> $@
430 endif
431 ifdef WITH_ZLIB
432         @echo $(DL)#define HAVE_ZLIB_H 1$(DL) >> $@
433         @echo $(DL)#define HAVE_LIBZ 1$(DL) >> $@
434 endif
435 ifdef WITH_SSL
436         @echo $(DL)#define USE_SSLEAY 1$(DL) >> $@
437         @echo $(DL)#define HAVE_OPENSSL_X509_H 1$(DL) >> $@
438         @echo $(DL)#define HAVE_OPENSSL_SSL_H 1$(DL) >> $@
439         @echo $(DL)#define HAVE_OPENSSL_RSA_H 1$(DL) >> $@
440         @echo $(DL)#define HAVE_OPENSSL_PEM_H 1$(DL) >> $@
441         @echo $(DL)#define HAVE_OPENSSL_ERR_H 1$(DL) >> $@
442         @echo $(DL)#define HAVE_OPENSSL_CRYPTO_H 1$(DL) >> $@
443         @echo $(DL)#define HAVE_OPENSSL_ENGINE_H 1$(DL) >> $@
444         @echo $(DL)#define HAVE_LIBSSL 1$(DL) >> $@
445         @echo $(DL)#define HAVE_LIBCRYPTO 1$(DL) >> $@
446         @echo $(DL)#define OPENSSL_NO_KRB5 1$(DL) >> $@
447 endif
448 ifdef WITH_SSH2
449         @echo $(DL)#define USE_LIBSSH2 1$(DL) >> $@
450         @echo $(DL)#define HAVE_LIBSSH2_H 1$(DL) >> $@
451 endif
452         @echo $(DL)#ifdef __GNUC__$(DL) >> $@
453         @echo $(DL)#define HAVE_VARIADIC_MACROS_GCC 1$(DL) >> $@
454         @echo $(DL)#else$(DL) >> $@
455         @echo $(DL)#define HAVE_VARIADIC_MACROS_C99 1$(DL) >> $@
456         @echo $(DL)#endif$(DL) >> $@
457 ifdef OLD_NOVELLSDK
458         @echo $(DL)#define socklen_t int$(DL) >> $@
459 endif
460
461 hugehelp.c:
462         @echo Creating $@
463         @$(CP) hugehelp.c.cvs $@
464
465