Support Watt-32 under Win32.
[platform/upstream/c-ares.git] / Makefile.netware
index ee91b75..2e00b09 100644 (file)
@@ -1,9 +1,10 @@
 #################################################################
+# $Id$
 #
-## Makefile for building libares.lib (NetWare version - gnu make)
+## Makefile for building libcares (NetWare version - gnu make)
 ## Use: make -f Makefile.netware
 ##
-## Comments to: Guenter Knauf <eflash@gmx.net>
+## Comments to: Guenter Knauf http://www.gknw.de/phpbb
 #
 #################################################################
 
@@ -13,14 +14,14 @@ NDKBASE     = c:/novell
 endif
 
 ifndef INSTDIR
-INSTDIR        = ../curl-$(LIBCURL_VERSION_STR)-bin-nw
+INSTDIR        = ../ares-$(LIBCARES_VERSION_STR)-bin-nw
 endif
 
 # Edit the vars below to change NLM target settings.
-TARGETS = adig.nlm ahost.nlm
-LTARGET = libcares.lib
+TARGETS = adig.nlm ahost.nlm acountry.nlm
+LTARGET = libcares.$(LIBEXT)
 VERSION        = $(LIBCARES_VERSION)
-COPYR  = Copyright (c) 1996 - 2004, Daniel Stenberg, <daniel@haxx.se>
+COPYR  = Copyright (C) 1996 - 2008, Daniel Stenberg, <daniel@haxx.se>
 DESCR  = cURL $(subst .def,,$(notdir $@)) $(LIBCARES_VERSION_STR) - http://curl.haxx.se
 MTSAFE = YES
 STACK  = 64000
@@ -34,10 +35,10 @@ ifndef LIBARCH
 LIBARCH = LIBC
 endif
 
-# must be equal to DEBUG or NDEBUG
+# must be equal to NDEBUG or DEBUG, CURLDEBUG
+ifndef DB
 DB     = NDEBUG
-# DB   = DEBUG
-# DB   = CURLDEBUG
+endif
 # Optimization: -O<n> or debugging: -g
 ifeq ($(DB),NDEBUG)
        OPT     = -O2
@@ -50,28 +51,39 @@ endif
 # Include the version info retrieved from curlver.h
 -include $(OBJDIR)/version.inc
 
-# The following line defines your compiler.
+# The following lines defines your compiler.
+ifdef CWFolder
+       METROWERKS = $(CWFolder)
+endif
 ifdef METROWERKS
+       # MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support
+       MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support/Metrowerks Support
        CC = mwccnlm
 else
        CC = gcc
 endif
+# a native win32 awk can be downloaded from here:
+# http://www.gknw.net/development/prgtools/awk-20070501.zip
+AWK    = awk
 YACC   = bison -y
 CP     = cp -afv
+MKDIR  = mkdir
 # RM   = rm -f
 # if you want to mark the target as MTSAFE you will need a tool for
 # generating the xdc data for the linker; here's a minimal tool:
-# http://www.gknw.com/development/prgtools/mkxdc.zip
+# http://www.gknw.net/development/prgtools/mkxdc.zip
 MPKXDC = mkxdc
 
 # Global flags for all compilers
-CFLAGS = $(OPT) -D$(DB) -DNETWARE -DHAVE_CONFIG_H -nostdinc
+CFLAGS += $(OPT) -D$(DB) -DNETWARE -DHAVE_CONFIG_H -nostdinc
 
 ifeq ($(CC),mwccnlm)
 LD     = mwldnlm
-LDFLAGS        = -nostdlib $(PRELUDE) $(OBJS) $(<:.def=.o) -o $@ -commandfile
+LDFLAGS        = -nostdlib $(PRELUDE) $(OBJEXE) $(<:.def=.o) -o $@ -commandfile
 AR     = mwldnlm
-ARFLAGS        = -type library -w nocmdline $(OBJDIR)/*.o -o
+ARFLAGS        = -nostdlib -type library -o
+LIBEXT = lib
+#RANLIB        =
 CFLAGS += -msgstyle gcc -gccinc -inline off -opt nointrinsics -proc 586
 CFLAGS += -relax_pointers
 #CFLAGS        += -w on
@@ -79,8 +91,10 @@ ifeq ($(LIBARCH),LIBC)
        PRELUDE = $(SDK_LIBC)/imports/libcpre.o
        CFLAGS += -align 4
 else
-       PRELUDE = "$(METROWERKS)/Novell Support/libraries/runtime/prelude.obj"
-#      CFLAGS += -include "$(METROWERKS)/Novell Support/headers/nlm_prefix.h"
+       # PRELUDE = $(SDK_CLIB)/imports/clibpre.o
+       # to avoid the __init_* / __deinit_* whoes dont use prelude from NDK
+       PRELUDE = "$(MWCW_PATH)/libraries/runtime/prelude.obj"
+       # CFLAGS += -include "$(MWCW_PATH)/headers/nlm_clib_prefix.h"
        CFLAGS += -align 1
 endif
 else
@@ -88,12 +102,17 @@ LD = nlmconv
 LDFLAGS        = -T
 AR     = ar
 ARFLAGS        = -cq
-CFLAGS += -fno-builtin -fpack-struct -fpcc-struct-return -fno-strict-aliasing
-CFLAGS += -Wall -Wno-format # -pedantic
+LIBEXT = a
+RANLIB = ranlib
+CFLAGS += -fno-builtin -fpcc-struct-return -fno-strict-aliasing
+CFLAGS += -Wall -Wno-format -Wno-uninitialized # -pedantic
 ifeq ($(LIBARCH),LIBC)
        PRELUDE = $(SDK_LIBC)/imports/libcpre.gcc.o
 else
-       PRELUDE = $(SDK_CLIB)/imports/clibpre.gcc.o
+       # PRELUDE = $(SDK_CLIB)/imports/clibpre.gcc.o
+       # to avoid the __init_* / __deinit_* whoes dont use prelude from NDK
+       # http://www.gknw.net/development/mk_nlm/gcc_pre.zip
+       PRELUDE = $(NDK_ROOT)/pre/prelude.o
        CFLAGS += -include $(NDKBASE)/nlmconv/genlm.h
 endif
 endif
@@ -103,14 +122,17 @@ SDK_CLIB = $(NDK_ROOT)/nwsdk
 SDK_LIBC = $(NDK_ROOT)/libc
 
 ifeq ($(LIBARCH),LIBC)
-       INCLUDES += -I$(SDK_LIBC)/include -I$(SDK_LIBC)/include/nks
-       INCLUDES += -I$(SDK_LIBC)/include/winsock
+       INCLUDES += -I$(SDK_LIBC)/include
+       # INCLUDES += -I$(SDK_LIBC)/include/nks
+       # INCLUDES += -I$(SDK_LIBC)/include/winsock
        CFLAGS += -D_POSIX_SOURCE
-#      CFLAGS += -D__ANSIC__
 else
-       INCLUDES += -I$(SDK_CLIB)/include/nlm -I$(SDK_CLIB)/include
+       INCLUDES += -I$(SDK_CLIB)/include/nlm
        # INCLUDES += -I$(SDK_CLIB)/include/nlm/obsolete
-       CFLAGS += -DNETDB_USE_INTERNET
+       # INCLUDES += -I$(SDK_CLIB)/include
+endif
+ifeq ($(DB),CURLDEBUG)
+INCLUDES += -I../include
 endif
 CFLAGS += -I. $(INCLUDES)
 
@@ -126,20 +148,20 @@ DL        = '
 #-include $(NDKBASE)/nlmconv/ncpfs.inc
 endif
 
-OBJS   := $(patsubst %.c,$(OBJDIR)/%.o,$(wildcard ares_*.c))
+# Makefile.inc provides the CSOURCES and HHEADERS defines
+include Makefile.inc
+
+OBJLIB := $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CSOURCES)))
+OBJEXE = $(OBJLIB) $(OBJDIR)/ares_getopt.o
 
 .PHONY: lib nlm prebuild dist install clean
 
 lib: prebuild $(LTARGET)
 
-nlm: prebuild $(TARGETS) 
+nlm: prebuild $(TARGETS)
 
 prebuild: $(OBJDIR) $(OBJDIR)/version.inc config.h arpa/nameser.h
 
-dist: all
-       -$(RM) $(OBJS) $(OBJDIR)/*.map $(OBJDIR)/*.ncv
-       -$(RM) $(OBJDIR)/*.def $(OBJDIR)/*.xdc $(OBJDIR)/version.inc
-
 install: $(INSTDIR) all
        @$(CP) *.nlm $(INSTDIR)
        @$(CP) ../CHANGES $(INSTDIR)
@@ -152,21 +174,21 @@ clean:
        -$(RM) -r $(OBJDIR)
        -$(RM) -r arpa
 
-%.lib: $(OBJS)
+%.$(LIBEXT): $(OBJLIB)
        @echo Creating $@
        @-$(RM) $@
        @$(AR) $(ARFLAGS) $@ $^
+ifdef RANLIB
+       @$(RANLIB) $@
+endif
 
-%.nlm: $(OBJDIR)/%.def $(OBJDIR)/%.o $(OBJDIR)/%.xdc $(OBJS)
+%.nlm: $(OBJDIR)/%.def $(OBJDIR)/%.o $(OBJDIR)/%.xdc $(OBJEXE)
        @echo Linking $@
        @-$(RM) $@
        @$(LD) $(LDFLAGS) $<
 
-$(INSTDIR):
-       @mkdir $(INSTDIR)
-
-$(OBJDIR):
-       @mkdir $(OBJDIR)
+$(OBJDIR) $(INSTDIR):
+       @$(MKDIR) $@
 
 $(OBJDIR)/%.o: %.c
 #      @echo Compiling $<
@@ -174,7 +196,7 @@ $(OBJDIR)/%.o: %.c
 
 $(OBJDIR)/version.inc: ares_version.h $(OBJDIR)
        @echo Creating $@
-       @awk -f ../packages/NetWare/get_ver.awk $< > $@
+       @$(AWK) -f get_ver.awk $< > $@
 
 $(OBJDIR)/%.xdc: Makefile.netware
        @echo Creating $@
@@ -241,8 +263,9 @@ ifdef IMPORTS
        @echo $(DL)import $(IMPORTS)$(DL) >> $@
 endif
 ifeq ($(LD),nlmconv)
-       @echo $(DL)input $(OBJS)$(DL) >> $@
        @echo $(DL)input $(PRELUDE)$(DL) >> $@
+       @echo $(DL)input $(OBJEXE)$(DL) >> $@
+       @echo $(DL)input $(@:.def=.o)$(DL) >> $@
        @echo $(DL)output $(notdir $(@:.def=.nlm))$(DL) >> $@
 endif
 
@@ -252,53 +275,122 @@ config.h: Makefile.netware
        @echo $(DL)** Do not edit this file - it is created by make!$(DL) >> $@
        @echo $(DL)** All your changes will be lost!!$(DL) >> $@
        @echo $(DL)*/$(DL) >> $@
-       @echo $(DL)#define OS "i586-pc-NetWare"$(DL) >> $@
-       @echo $(DL)#define VERSION "$(LIBCURL_VERSION_STR)"$(DL) >> $@
-       @echo $(DL)#define PACKAGE_BUGREPORT "curl-bug@haxx.se"$(DL) >> $@
-       @echo $(DL)#define HAVE_ARPA_INET_H 1$(DL) >> $@
-       @echo $(DL)#define HAVE_ASSERT_H 1$(DL) >> $@
+       @echo $(DL)#ifndef NETWARE$(DL) >> $@
+       @echo $(DL)#error This $(notdir $@) is created for NetWare platform!$(DL) >> $@
+       @echo $(DL)#endif$(DL) >> $@
+       @echo $(DL)#define VERSION "$(LIBCARES_VERSION_STR)"$(DL) >> $@
+       @echo $(DL)#define PACKAGE_BUGREPORT "a suitable curl mailing list => http://curl.haxx.se/mail/"$(DL) >> $@
+ifeq ($(LIBARCH),CLIB)
+       @echo $(DL)#define OS "i586-pc-clib-NetWare"$(DL) >> $@
+       @echo $(DL)#define NETDB_USE_INTERNET 1$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_ARG1 int$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_ARG2 char *$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_ARG3 int$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_ARG4 int$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_RETV int$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG1 int$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG2 char$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG3 int$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG4 int$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG5 struct sockaddr$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG6 int$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_RETV int$(DL) >> $@
+       @echo $(DL)#define SEND_QUAL_ARG2$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_ARG1 int$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_ARG2 char *$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_ARG3 int$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_ARG4 int$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_RETV int$(DL) >> $@
+       @echo $(DL)#define socklen_t int$(DL) >> $@
+       @echo $(DL)#define strncasecmp strnicmp$(DL) >> $@
+       @echo $(DL)#define strcasecmp stricmp$(DL) >> $@
+else
+       @echo $(DL)#define OS "i586-pc-libc-NetWare"$(DL) >> $@
        @echo $(DL)#define HAVE_DLFCN_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_DLOPEN 1$(DL) >> $@
+       @echo $(DL)#define HAVE_FTRUNCATE 1$(DL) >> $@
+       @echo $(DL)#define HAVE_GETTIMEOFDAY 1$(DL) >> $@
+       @echo $(DL)#define HAVE_INET_PTON 1$(DL) >> $@
+       @echo $(DL)#define HAVE_INTTYPES_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_LIMITS_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_LONGLONG 1$(DL) >> $@
+       @echo $(DL)#define HAVE_STDINT_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_STRCASECMP 1$(DL) >> $@
+       @echo $(DL)#define HAVE_STRLCAT 1$(DL) >> $@
+       @echo $(DL)#define HAVE_STRLCPY 1$(DL) >> $@
+       @echo $(DL)#define HAVE_STRTOLL 1$(DL) >> $@
+       @echo $(DL)#define HAVE_SYS_PARAM_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_SYS_SELECT_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_TERMIOS_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_AF_INET6 1$(DL) >> $@
+       @echo $(DL)#define HAVE_PF_INET6 1$(DL) >> $@
+       @echo $(DL)#define HAVE_STRUCT_IN6_ADDR 1$(DL) >> $@
+       @echo $(DL)#define HAVE_STRUCT_SOCKADDR_IN6 1$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_ARG1 int$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_ARG2 void *$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_ARG3 size_t$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_ARG4 int$(DL) >> $@
+       @echo $(DL)#define RECV_TYPE_RETV ssize_t$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG1 int$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG2 void$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG3 size_t$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG4 int$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG5 struct sockaddr$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG6 size_t$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_RETV ssize_t$(DL) >> $@
+       @echo $(DL)#define RECVFROM_TYPE_ARG2_IS_VOID 1$(DL) >> $@
+       @echo $(DL)#define SEND_QUAL_ARG2$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_ARG1 int$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_ARG2 void *$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_ARG3 size_t$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_ARG4 int$(DL) >> $@
+       @echo $(DL)#define SEND_TYPE_RETV ssize_t$(DL) >> $@
+       @echo $(DL)#define SIZEOF_STRUCT_IN6_ADDR 16$(DL) >> $@
+endif
+       @echo $(DL)#define HAVE_ARPA_INET_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_ARPA_NAMESER_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_ASSERT_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_ERR_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_FCNTL_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_FIONBIO 1$(DL) >> $@
        @echo $(DL)#define HAVE_GETHOSTBYADDR 1$(DL) >> $@
-       @echo $(DL)#define HAVE_GETTIMEOFDAY 1$(DL) >> $@
+       @echo $(DL)#define HAVE_GETHOSTBYNAME 1$(DL) >> $@
+       @echo $(DL)#define HAVE_GETPROTOBYNAME 1$(DL) >> $@
+       @echo $(DL)#define HAVE_GMTIME_R 1$(DL) >> $@
        @echo $(DL)#define HAVE_INET_ADDR 1$(DL) >> $@
        @echo $(DL)#define HAVE_INET_NTOA 1$(DL) >> $@
-       @echo $(DL)#define HAVE_INET_PTON 1$(DL) >> $@
-       @echo $(DL)#define HAVE_INTTYPES_H 1$(DL) >> $@
-       @echo $(DL)#define HAVE_LIMITS_H 1$(DL) >> $@
-       @echo $(DL)#define HAVE_LONGLONG 1$(DL) >> $@
+       @echo $(DL)#define HAVE_LL 1$(DL) >> $@
+       @echo $(DL)#define HAVE_LOCALTIME_R 1$(DL) >> $@
        @echo $(DL)#define HAVE_MALLOC_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_NETINET_IN_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_RECV 1$(DL) >> $@
+       @echo $(DL)#define HAVE_RECVFROM 1$(DL) >> $@
        @echo $(DL)#define HAVE_SELECT 1$(DL) >> $@
+       @echo $(DL)#define HAVE_SEND 1$(DL) >> $@
        @echo $(DL)#define HAVE_SETJMP_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_SIGNAL 1$(DL) >> $@
+       @echo $(DL)#define HAVE_SIGNAL_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_SIG_ATOMIC_T 1$(DL) >> $@
        @echo $(DL)#define HAVE_SOCKET 1$(DL) >> $@
-       @echo $(DL)#define HAVE_STDINT_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_STDLIB_H 1$(DL) >> $@
-       @echo $(DL)#define HAVE_STRCASECMP 1$(DL) >> $@
        @echo $(DL)#define HAVE_STRDUP 1$(DL) >> $@
        @echo $(DL)#define HAVE_STRFTIME 1$(DL) >> $@
        @echo $(DL)#define HAVE_STRING_H 1$(DL) >> $@
-       @echo $(DL)#define HAVE_STRLCAT 1$(DL) >> $@
-       @echo $(DL)#define HAVE_STRLCPY 1$(DL) >> $@
        @echo $(DL)#define HAVE_STRSTR 1$(DL) >> $@
-       @echo $(DL)#define HAVE_SYS_PARAM_H 1$(DL) >> $@
-       @echo $(DL)#define HAVE_SYS_SELECT_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_STRUCT_ADDRINFO 1$(DL) >> $@
+       @echo $(DL)#define HAVE_STRUCT_TIMEVAL 1$(DL) >> $@
+       @echo $(DL)#define HAVE_SYS_IOCTL_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_SYS_STAT_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_SYS_TIME_H 1$(DL) >> $@
-       @echo $(DL)#define HAVE_TERMIOS_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_TIME_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_UNAME 1$(DL) >> $@
        @echo $(DL)#define HAVE_UNISTD_H 1$(DL) >> $@
+       @echo $(DL)#define HAVE_UTIME 1$(DL) >> $@
+       @echo $(DL)#define HAVE_UTIME_H 1$(DL) >> $@
        @echo $(DL)#define RETSIGTYPE void$(DL) >> $@
-       @echo $(DL)#define SIZEOF_CURL_OFF_T 4$(DL) >> $@
+       @echo $(DL)#define SIZEOF_STRUCT_IN_ADDR 4$(DL) >> $@
        @echo $(DL)#define STDC_HEADERS 1$(DL) >> $@
        @echo $(DL)#define TIME_WITH_SYS_TIME 1$(DL) >> $@
-       @echo $(DL)#define HAVE_STRUCT_IN6_ADDR 1$(DL) >> $@
-       @echo $(DL)#define HAVE_AF_INET6 1$(DL) >> $@
 ifdef NW_WINSOCK
        @echo $(DL)#define HAVE_CLOSESOCKET 1$(DL) >> $@
 else
@@ -307,6 +399,11 @@ else
        @echo $(DL)#define HAVE_SYS_SOCKIO_H 1$(DL) >> $@
        @echo $(DL)#define HAVE_NETDB_H 1$(DL) >> $@
 endif
+       @echo $(DL)#ifdef __GNUC__$(DL) >> $@
+       @echo $(DL)#define HAVE_VARIADIC_MACROS_GCC 1$(DL) >> $@
+       @echo $(DL)#else$(DL) >> $@
+       @echo $(DL)#define HAVE_VARIADIC_MACROS_C99 1$(DL) >> $@
+       @echo $(DL)#endif$(DL) >> $@
 ifdef OLD_NOVELLSDK
        @echo $(DL)#define socklen_t int$(DL) >> $@
 endif