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