ares_getopt() command-line parser function does not belong to actual c-ares library...
[platform/upstream/c-ares.git] / Makefile.netware
1 #################################################################
2 # $Id$
3 #
4 ## Makefile for building libares (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 ifndef INSTDIR
17 INSTDIR = ../curl-$(LIBCURL_VERSION_STR)-bin-nw
18 endif
19
20 # Edit the vars below to change NLM target settings.
21 TARGETS = adig.nlm ahost.nlm
22 LTARGET = libcares.$(LIBEXT)
23 VERSION = $(LIBCARES_VERSION)
24 COPYR   = Copyright (C) 1996 - 2007, Daniel Stenberg, <daniel@haxx.se>
25 DESCR   = cURL $(subst .def,,$(notdir $@)) $(LIBCARES_VERSION_STR) - http://curl.haxx.se
26 MTSAFE  = YES
27 STACK   = 64000
28 SCREEN  = none
29 #EXPORTS        =
30 # Comment the line below if you dont want to load protected automatically.
31 #LDRING = 3
32
33 # Edit the var below to point to your lib architecture.
34 ifndef LIBARCH
35 LIBARCH = LIBC
36 endif
37
38 # must be equal to DEBUG or NDEBUG
39 DB      = NDEBUG
40 # DB    = DEBUG
41 # DB    = CURLDEBUG
42 # Optimization: -O<n> or debugging: -g
43 ifeq ($(DB),NDEBUG)
44         OPT     = -O2
45         OBJDIR  = release
46 else
47         OPT     = -g
48         OBJDIR  = debug
49 endif
50
51 # Include the version info retrieved from curlver.h
52 -include $(OBJDIR)/version.inc
53
54 # The following line defines your compiler.
55 ifdef METROWERKS
56         CC = mwccnlm
57 else
58         CC = gcc
59 endif
60 YACC    = bison -y
61 CP      = cp -afv
62 # RM    = rm -f
63 # if you want to mark the target as MTSAFE you will need a tool for
64 # generating the xdc data for the linker; here's a minimal tool:
65 # http://www.gknw.com/development/prgtools/mkxdc.zip
66 MPKXDC  = mkxdc
67
68 # Global flags for all compilers
69 CFLAGS  = $(OPT) -D$(DB) -DNETWARE -DHAVE_CONFIG_H -nostdinc
70
71 ifeq ($(CC),mwccnlm)
72 LD      = mwldnlm
73 LDFLAGS = -nostdlib $(PRELUDE) $(OBJEXE) $(<:.def=.o) -o $@ -commandfile
74 AR      = mwldnlm
75 ARFLAGS = -type library -w nocmdline $(OBJDIR)/*.o -o
76 LIBEXT  = lib
77 CFLAGS  += -msgstyle gcc -gccinc -inline off -opt nointrinsics -proc 586
78 CFLAGS  += -relax_pointers
79 #CFLAGS += -w on
80 ifeq ($(LIBARCH),LIBC)
81         PRELUDE = $(SDK_LIBC)/imports/libcpre.o
82         CFLAGS += -align 4
83 else
84         PRELUDE = "$(METROWERKS)/Novell Support/libraries/runtime/prelude.obj"
85 #       CFLAGS += -include "$(METROWERKS)/Novell Support/headers/nlm_prefix.h"
86         CFLAGS += -align 1
87 endif
88 else
89 LD      = nlmconv
90 LDFLAGS = -T
91 AR      = ar
92 ARFLAGS = -cq
93 LIBEXT  = a
94 CFLAGS  += -fno-builtin -fpcc-struct-return -fno-strict-aliasing
95 CFLAGS  += -Wall -Wno-format -Wno-uninitialized # -pedantic
96 ifeq ($(LIBARCH),LIBC)
97         PRELUDE = $(SDK_LIBC)/imports/libcpre.gcc.o
98 else
99         PRELUDE = $(SDK_CLIB)/imports/clibpre.gcc.o
100         CFLAGS += -include $(NDKBASE)/nlmconv/genlm.h
101 endif
102 endif
103
104 NDK_ROOT = $(NDKBASE)/ndk
105 SDK_CLIB = $(NDK_ROOT)/nwsdk
106 SDK_LIBC = $(NDK_ROOT)/libc
107
108 ifeq ($(LIBARCH),LIBC)
109         INCLUDES += -I$(SDK_LIBC)/include -I$(SDK_LIBC)/include/nks
110         # INCLUDES += -I$(SDK_LIBC)/include/winsock
111         CFLAGS += -D_POSIX_SOURCE
112 #       CFLAGS += -D__ANSIC__
113 else
114         INCLUDES += -I$(SDK_CLIB)/include/nlm -I$(SDK_CLIB)/include
115         # INCLUDES += -I$(SDK_CLIB)/include/nlm/obsolete
116         CFLAGS += -DNETDB_USE_INTERNET
117 endif
118 CFLAGS  += -I. $(INCLUDES)
119
120 ifeq ($(MTSAFE),YES)
121         XDCOPT = -n
122 endif
123 ifeq ($(MTSAFE),NO)
124         XDCOPT = -u
125 endif
126
127 ifeq ($(findstring linux,$(OSTYPE)),linux)
128 DL      = '
129 #-include $(NDKBASE)/nlmconv/ncpfs.inc
130 endif
131
132 # Makefile.inc provides the CSOURCES and HHEADERS defines
133 include Makefile.inc
134
135 OBJLIB  := $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CSOURCES)))
136 OBJEXE  = $(OBJLIB) $(OBJDIR)/ares_getopt.o  
137
138 .PHONY: lib nlm prebuild dist install clean
139
140 lib: prebuild $(LTARGET)
141
142 nlm: prebuild $(TARGETS) 
143
144 prebuild: $(OBJDIR) $(OBJDIR)/version.inc config.h arpa/nameser.h
145
146 dist: all
147         -$(RM) $(OBJLIB) $(OBJDIR)/*.map $(OBJDIR)/*.ncv
148         -$(RM) $(OBJDIR)/*.def $(OBJDIR)/*.xdc $(OBJDIR)/version.inc
149
150 install: $(INSTDIR) all
151         @$(CP) *.nlm $(INSTDIR)
152         @$(CP) ../CHANGES $(INSTDIR)
153         @$(CP) ../COPYING $(INSTDIR)
154         @$(CP) ../README $(INSTDIR)
155         @$(CP) ../RELEASE-NOTES $(INSTDIR)
156
157 clean:
158         -$(RM) $(LTARGET) $(TARGETS) config.h
159         -$(RM) -r $(OBJDIR)
160         -$(RM) -r arpa
161
162 %.$(LIBEXT): $(OBJLIB)
163         @echo Creating $@
164         @-$(RM) $@
165         @$(AR) $(ARFLAGS) $@ $^
166
167 %.nlm: $(OBJDIR)/%.def $(OBJDIR)/%.o $(OBJDIR)/%.xdc $(OBJEXE)
168         @echo Linking $@
169         @-$(RM) $@
170         @$(LD) $(LDFLAGS) $<
171
172 $(INSTDIR):
173         @mkdir $(INSTDIR)
174
175 $(OBJDIR):
176         @mkdir $(OBJDIR)
177
178 $(OBJDIR)/%.o: %.c
179 #       @echo Compiling $<
180         $(CC) $(CFLAGS) -c $< -o $@
181
182 $(OBJDIR)/version.inc: ares_version.h $(OBJDIR)
183         @echo Creating $@
184         @awk -f ../packages/NetWare/get_ver.awk $< > $@
185
186 $(OBJDIR)/%.xdc: Makefile.netware
187         @echo Creating $@
188         @$(MPKXDC) $(XDCOPT) $@
189
190 $(OBJDIR)/%.def: Makefile.netware
191         @echo Creating $@
192         @echo $(DL)# DEF file for linking with $(LD)$(DL) > $@
193         @echo $(DL)# Do not edit this file - it is created by make!$(DL) >> $@
194         @echo $(DL)# All your changes will be lost!!$(DL) >> $@
195         @echo $(DL)#$(DL) >> $@
196         @echo $(DL)copyright "$(COPYR)"$(DL) >> $@
197         @echo $(DL)description "$(DESCR)"$(DL) >> $@
198         @echo $(DL)version $(VERSION)$(DL) >> $@
199 ifdef NLMTYPE
200         @echo $(DL)type $(NLMTYPE)$(DL) >> $@
201 endif
202 ifdef STACK
203         @echo $(DL)stack $(STACK)$(DL) >> $@
204 endif
205 ifdef SCREEN
206         @echo $(DL)screenname "$(SCREEN)"$(DL) >> $@
207 else
208         @echo $(DL)screenname "DEFAULT"$(DL) >> $@
209 endif
210 ifeq ($(DB),DEBUG)
211         @echo $(DL)debug$(DL) >> $@
212 endif
213         @echo $(DL)threadname "$^"$(DL) >> $@
214 ifdef XDCOPT
215         @echo $(DL)xdcdata $(@:.def=.xdc)$(DL) >> $@
216 endif
217 ifeq ($(LDRING),0)
218         @echo $(DL)flag_on 16$(DL) >> $@
219 endif
220 ifeq ($(LDRING),3)
221         @echo $(DL)flag_on 512$(DL) >> $@
222 endif
223 ifeq ($(LIBARCH),CLIB)
224         @echo $(DL)start _Prelude$(DL) >> $@
225         @echo $(DL)exit _Stop$(DL) >> $@
226         @echo $(DL)import @$(SDK_CLIB)/imports/clib.imp$(DL) >> $@
227         @echo $(DL)import @$(SDK_CLIB)/imports/threads.imp$(DL) >> $@
228         @echo $(DL)import @$(SDK_CLIB)/imports/nlmlib.imp$(DL) >> $@
229         @echo $(DL)import @$(SDK_CLIB)/imports/socklib.imp$(DL) >> $@
230         @echo $(DL)module clib$(DL) >> $@
231 else
232         @echo $(DL)flag_on 64$(DL) >> $@
233         @echo $(DL)pseudopreemption$(DL) >> $@
234         @echo $(DL)start _LibCPrelude$(DL) >> $@
235         @echo $(DL)exit _LibCPostlude$(DL) >> $@
236         @echo $(DL)check _LibCCheckUnload$(DL) >> $@
237         @echo $(DL)import @$(SDK_LIBC)/imports/libc.imp$(DL) >> $@
238         @echo $(DL)import @$(SDK_LIBC)/imports/netware.imp$(DL) >> $@
239         @echo $(DL)module libc$(DL) >> $@
240 endif
241 ifdef MODULES
242         @echo $(DL)module $(MODULES)$(DL) >> $@
243 endif
244 ifdef EXPORTS
245         @echo $(DL)export $(EXPORTS)$(DL) >> $@
246 endif
247 ifdef IMPORTS
248         @echo $(DL)import $(IMPORTS)$(DL) >> $@
249 endif
250 ifeq ($(LD),nlmconv)
251         @echo $(DL)input $(OBJEXE)$(DL) >> $@
252         @echo $(DL)input $(PRELUDE)$(DL) >> $@
253         @echo $(DL)output $(notdir $(@:.def=.nlm))$(DL) >> $@
254 endif
255
256 config.h: Makefile.netware
257         @echo Creating $@
258         @echo $(DL)/* $@ for NetWare target.$(DL) > $@
259         @echo $(DL)** Do not edit this file - it is created by make!$(DL) >> $@
260         @echo $(DL)** All your changes will be lost!!$(DL) >> $@
261         @echo $(DL)*/$(DL) >> $@
262         @echo $(DL)#ifndef NETWARE$(DL) >> $@
263         @echo $(DL)#error This $(notdir $@) is created for NetWare platform!$(DL) >> $@
264         @echo $(DL)#endif$(DL) >> $@
265         @echo $(DL)#define OS "i586-pc-NetWare"$(DL) >> $@
266         @echo $(DL)#define VERSION "$(LIBCARES_VERSION_STR)"$(DL) >> $@
267         @echo $(DL)#define PACKAGE_BUGREPORT "a suitable curl mailing list => http://curl.haxx.se/mail/"$(DL) >> $@
268         @echo $(DL)#define HAVE_ARPA_INET_H 1$(DL) >> $@
269         @echo $(DL)#define HAVE_ARPA_NAMESER_H 1$(DL) >> $@
270         @echo $(DL)#define HAVE_ASSERT_H 1$(DL) >> $@
271         @echo $(DL)#define HAVE_DLFCN_H 1$(DL) >> $@
272         @echo $(DL)#define HAVE_DLOPEN 1$(DL) >> $@
273         @echo $(DL)#define HAVE_ERR_H 1$(DL) >> $@
274         @echo $(DL)#define HAVE_FCNTL_H 1$(DL) >> $@
275         @echo $(DL)#define HAVE_FIONBIO 1$(DL) >> $@
276         @echo $(DL)#define HAVE_GETHOSTBYADDR 1$(DL) >> $@
277         @echo $(DL)#define HAVE_GETTIMEOFDAY 1$(DL) >> $@
278         @echo $(DL)#define HAVE_INET_ADDR 1$(DL) >> $@
279         @echo $(DL)#define HAVE_INET_NTOA 1$(DL) >> $@
280         @echo $(DL)#define HAVE_INET_PTON 1$(DL) >> $@
281         @echo $(DL)#define HAVE_INTTYPES_H 1$(DL) >> $@
282         @echo $(DL)#define HAVE_LIMITS_H 1$(DL) >> $@
283         @echo $(DL)#define HAVE_LONGLONG 1$(DL) >> $@
284         @echo $(DL)#define HAVE_MALLOC_H 1$(DL) >> $@
285         @echo $(DL)#define HAVE_NETINET_IN_H 1$(DL) >> $@
286         @echo $(DL)#define HAVE_RECV 1$(DL) >> $@
287         @echo $(DL)#define HAVE_SELECT 1$(DL) >> $@
288         @echo $(DL)#define HAVE_SEND 1$(DL) >> $@
289         @echo $(DL)#define HAVE_SETJMP_H 1$(DL) >> $@
290         @echo $(DL)#define HAVE_SIGNAL 1$(DL) >> $@
291         @echo $(DL)#define HAVE_SIGNAL_H 1$(DL) >> $@
292         @echo $(DL)#define HAVE_SIG_ATOMIC_T 1$(DL) >> $@
293         @echo $(DL)#define HAVE_SOCKET 1$(DL) >> $@
294         @echo $(DL)#define HAVE_STDINT_H 1$(DL) >> $@
295         @echo $(DL)#define HAVE_STDLIB_H 1$(DL) >> $@
296         @echo $(DL)#define HAVE_STRCASECMP 1$(DL) >> $@
297         @echo $(DL)#define HAVE_STRDUP 1$(DL) >> $@
298         @echo $(DL)#define HAVE_STRFTIME 1$(DL) >> $@
299         @echo $(DL)#define HAVE_STRING_H 1$(DL) >> $@
300         @echo $(DL)#define HAVE_STRLCAT 1$(DL) >> $@
301         @echo $(DL)#define HAVE_STRLCPY 1$(DL) >> $@
302         @echo $(DL)#define HAVE_STRSTR 1$(DL) >> $@
303         @echo $(DL)#define HAVE_SYS_PARAM_H 1$(DL) >> $@
304         @echo $(DL)#define HAVE_SYS_SELECT_H 1$(DL) >> $@
305         @echo $(DL)#define HAVE_SYS_STAT_H 1$(DL) >> $@
306         @echo $(DL)#define HAVE_SYS_TIME_H 1$(DL) >> $@
307         @echo $(DL)#define HAVE_TERMIOS_H 1$(DL) >> $@
308         @echo $(DL)#define HAVE_TIME_H 1$(DL) >> $@
309         @echo $(DL)#define HAVE_UNAME 1$(DL) >> $@
310         @echo $(DL)#define HAVE_UNISTD_H 1$(DL) >> $@
311         @echo $(DL)#define RECV_TYPE_ARG1 int$(DL) >> $@
312         @echo $(DL)#define RECV_TYPE_ARG2 char *$(DL) >> $@
313         @echo $(DL)#define RECV_TYPE_ARG3 int$(DL) >> $@
314         @echo $(DL)#define RECV_TYPE_ARG4 int$(DL) >> $@
315         @echo $(DL)#define RECV_TYPE_RETV int$(DL) >> $@
316         @echo $(DL)#define RETSIGTYPE void$(DL) >> $@
317         @echo $(DL)#define SEND_QUAL_ARG2$(DL) >> $@
318         @echo $(DL)#define SEND_TYPE_ARG1 int$(DL) >> $@
319         @echo $(DL)#define SEND_TYPE_ARG2 char *$(DL) >> $@
320         @echo $(DL)#define SEND_TYPE_ARG3 int$(DL) >> $@
321         @echo $(DL)#define SEND_TYPE_ARG4 int$(DL) >> $@
322         @echo $(DL)#define SEND_TYPE_RETV int$(DL) >> $@
323         @echo $(DL)#define SIZEOF_CURL_OFF_T 4$(DL) >> $@
324         @echo $(DL)#define STDC_HEADERS 1$(DL) >> $@
325         @echo $(DL)#define TIME_WITH_SYS_TIME 1$(DL) >> $@
326         @echo $(DL)#define HAVE_AF_INET6 1$(DL) >> $@
327         @echo $(DL)#define HAVE_PF_INET6 1$(DL) >> $@
328         @echo $(DL)#define HAVE_STRUCT_ADDRINFO 1$(DL) >> $@
329         @echo $(DL)#define HAVE_STRUCT_IN6_ADDR 1$(DL) >> $@
330         @echo $(DL)#define HAVE_STRUCT_SOCKADDR_IN6 1$(DL) >> $@
331         @echo $(DL)#define HAVE_STRUCT_TIMEVAL 1$(DL) >> $@
332         @echo $(DL)#define SIZEOF_STRUCT_IN6_ADDR 16$(DL) >> $@
333         @echo $(DL)#define SIZEOF_STRUCT_IN_ADDR 4$(DL) >> $@
334 ifdef NW_WINSOCK
335         @echo $(DL)#define HAVE_CLOSESOCKET 1$(DL) >> $@
336 else
337         @echo $(DL)#define HAVE_SYS_TYPES_H 1$(DL) >> $@
338         @echo $(DL)#define HAVE_SYS_SOCKET_H 1$(DL) >> $@
339         @echo $(DL)#define HAVE_SYS_SOCKIO_H 1$(DL) >> $@
340         @echo $(DL)#define HAVE_NETDB_H 1$(DL) >> $@
341 endif
342         @echo $(DL)#ifdef __GNUC__$(DL) >> $@
343         @echo $(DL)#define HAVE_VARIADIC_MACROS_GCC 1$(DL) >> $@
344         @echo $(DL)#else$(DL) >> $@
345         @echo $(DL)#define HAVE_VARIADIC_MACROS_C99 1$(DL) >> $@
346         @echo $(DL)#endif$(DL) >> $@
347 ifdef OLD_NOVELLSDK
348         @echo $(DL)#define socklen_t int$(DL) >> $@
349 endif
350
351 arpa/nameser.h: nameser.h
352         @echo Fix missing header $@
353         @-mkdir arpa
354         @$(CP) $< arpa
355
356