Skip to content
Snippets Groups Projects
Makefile.netware 11.1 KiB
Newer Older
  • Learn to ignore specific revisions
  • Guenter Knauf's avatar
    Guenter Knauf committed
    #################################################################
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    # $Id$
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    #
    
    ## Makefile for building libcares (NetWare version - gnu make)
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ## Use: make -f Makefile.netware
    ##
    
    ## Comments to: Guenter Knauf http://www.gknw.de/phpbb
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    #
    #################################################################
    
    # Edit the path below to point to the base of your Novell NDK.
    ifndef NDKBASE
    NDKBASE	= c:/novell
    endif
    
    ifndef INSTDIR
    INSTDIR	= ../curl-$(LIBCURL_VERSION_STR)-bin-nw
    endif
    
    # Edit the vars below to change NLM target settings.
    
    TARGETS = adig.nlm ahost.nlm
    
    LTARGET = libcares.$(LIBEXT)
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    VERSION	= $(LIBCARES_VERSION)
    
    COPYR	= Copyright (C) 1996 - 2007, Daniel Stenberg, <daniel@haxx.se>
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    DESCR	= cURL $(subst .def,,$(notdir $@)) $(LIBCARES_VERSION_STR) - http://curl.haxx.se
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    MTSAFE	= YES
    STACK	= 64000
    SCREEN	= none
    #EXPORTS	=
    # Comment the line below if you dont want to load protected automatically.
    #LDRING	= 3
    
    # Edit the var below to point to your lib architecture.
    ifndef LIBARCH
    LIBARCH = LIBC
    endif
    
    
    # must be equal to NDEBUG or DEBUG, CURLDEBUG
    ifndef DB
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    DB	= NDEBUG
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    # Optimization: -O<n> or debugging: -g
    ifeq ($(DB),NDEBUG)
    	OPT	= -O2
    	OBJDIR	= release
    else
    	OPT	= -g
    	OBJDIR	= debug
    endif
    
    # Include the version info retrieved from curlver.h
    -include $(OBJDIR)/version.inc
    
    # The following line defines your compiler.
    ifdef METROWERKS
    
    	# MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support
    	MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support/Metrowerks Support
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	CC = mwccnlm
    else
    	CC = gcc
    endif
    
    # a native win32 awk can be downloaded from here:
    # http://www.gknw.net/development/prgtools/awk-20050424.zip
    AWK	= awk
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    YACC	= bison -y
    CP	= cp -afv
    # 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
    MPKXDC	= mkxdc
    
    # Global flags for all compilers
    CFLAGS	= $(OPT) -D$(DB) -DNETWARE -DHAVE_CONFIG_H -nostdinc
    
    ifeq ($(CC),mwccnlm)
    LD	= mwldnlm
    
    LDFLAGS	= -nostdlib $(PRELUDE) $(OBJEXE) $(<:.def=.o) -o $@ -commandfile
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    AR	= mwldnlm
    
    ARFLAGS	= -nostdlib -type library -o
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    CFLAGS	+= -msgstyle gcc -gccinc -inline off -opt nointrinsics -proc 586
    CFLAGS	+= -relax_pointers
    #CFLAGS	+= -w on
    ifeq ($(LIBARCH),LIBC)
    	PRELUDE = $(SDK_LIBC)/imports/libcpre.o
    	CFLAGS += -align 4
    else
    
    	# PRELUDE = $(SDK_CLIB)/imports/clibpre.o
    	# to avoid the __init... whoes dont use prelude from NDK
    	PRELUDE = "$(MWCW_PATH)/libraries/runtime/prelude.obj"
    	# CFLAGS += -include "$(MWCW_PATH)/headers/nlm_clib_prefix.h"
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	CFLAGS += -align 1
    endif
    else
    LD	= nlmconv
    LDFLAGS	= -T
    AR	= ar
    ARFLAGS	= -cq
    
    CFLAGS	+= -fno-builtin -fpcc-struct-return -fno-strict-aliasing
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    CFLAGS	+= -Wall -Wno-format -Wno-uninitialized # -pedantic
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ifeq ($(LIBARCH),LIBC)
    	PRELUDE = $(SDK_LIBC)/imports/libcpre.gcc.o
    else
    	PRELUDE = $(SDK_CLIB)/imports/clibpre.gcc.o
    	CFLAGS += -include $(NDKBASE)/nlmconv/genlm.h
    endif
    endif
    
    NDK_ROOT = $(NDKBASE)/ndk
    SDK_CLIB = $(NDK_ROOT)/nwsdk
    SDK_LIBC = $(NDK_ROOT)/libc
    
    ifeq ($(LIBARCH),LIBC)
    	INCLUDES += -I$(SDK_LIBC)/include -I$(SDK_LIBC)/include/nks
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	# INCLUDES += -I$(SDK_LIBC)/include/winsock
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	CFLAGS += -D_POSIX_SOURCE
    #	CFLAGS += -D__ANSIC__
    else
    	INCLUDES += -I$(SDK_CLIB)/include/nlm -I$(SDK_CLIB)/include
    	# INCLUDES += -I$(SDK_CLIB)/include/nlm/obsolete
    	CFLAGS += -DNETDB_USE_INTERNET
    endif
    
    CFLAGS	+= -I. $(INCLUDES)
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    
    ifeq ($(MTSAFE),YES)
    	XDCOPT = -n
    endif
    ifeq ($(MTSAFE),NO)
    	XDCOPT = -u
    endif
    
    
    ifeq ($(findstring linux,$(OSTYPE)),linux)
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    DL	= '
    #-include $(NDKBASE)/nlmconv/ncpfs.inc
    endif
    
    
    # Makefile.inc provides the CSOURCES and HHEADERS defines
    include Makefile.inc
    
    
    OBJLIB	:= $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CSOURCES)))
    OBJEXE	= $(OBJLIB) $(OBJDIR)/ares_getopt.o  
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    .PHONY: lib nlm prebuild dist install clean
    
    lib: prebuild $(LTARGET)
    
    nlm: prebuild $(TARGETS) 
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    
    prebuild: $(OBJDIR) $(OBJDIR)/version.inc config.h arpa/nameser.h
    
    dist: all
    
    	-$(RM) $(OBJLIB) $(OBJDIR)/*.map $(OBJDIR)/*.ncv
    
    	-$(RM) $(OBJDIR)/*.def $(OBJDIR)/*.xdc $(OBJDIR)/version.inc
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    
    install: $(INSTDIR) all
    
    	@$(CP) *.nlm $(INSTDIR)
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@$(CP) ../CHANGES $(INSTDIR)
    	@$(CP) ../COPYING $(INSTDIR)
    	@$(CP) ../README $(INSTDIR)
    	@$(CP) ../RELEASE-NOTES $(INSTDIR)
    
    clean:
    
    	-$(RM) $(LTARGET) $(TARGETS) config.h
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	-$(RM) -r $(OBJDIR)
    	-$(RM) -r arpa
    
    
    	@echo Creating $@
    	@-$(RM) $@
    	@$(AR) $(ARFLAGS) $@ $^
    
    ifdef RANLIB
    	@$(RANLIB) $@
    endif
    
    %.nlm: $(OBJDIR)/%.def $(OBJDIR)/%.o $(OBJDIR)/%.xdc $(OBJEXE)
    
    	@echo Linking $@
    	@-$(RM) $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@$(LD) $(LDFLAGS) $<
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    $(INSTDIR):
    	@mkdir $(INSTDIR)
    
    $(OBJDIR):
    	@mkdir $(OBJDIR)
    
    
    $(OBJDIR)/%.o: %.c
    #	@echo Compiling $<
    	$(CC) $(CFLAGS) -c $< -o $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    $(OBJDIR)/version.inc: ares_version.h $(OBJDIR)
    
    	@echo Creating $@
    
    	@$(AWK) -f ../packages/NetWare/get_ver.awk $< > $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    
    $(OBJDIR)/%.xdc: Makefile.netware
    	@echo Creating $@
    	@$(MPKXDC) $(XDCOPT) $@
    
    $(OBJDIR)/%.def: Makefile.netware
    
    	@echo Creating $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)# DEF file for linking with $(LD)$(DL) > $@
    	@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)copyright "$(COPYR)"$(DL) >> $@
    	@echo $(DL)description "$(DESCR)"$(DL) >> $@
    	@echo $(DL)version $(VERSION)$(DL) >> $@
    ifdef NLMTYPE
    	@echo $(DL)type $(NLMTYPE)$(DL) >> $@
    endif
    ifdef STACK
    	@echo $(DL)stack $(STACK)$(DL) >> $@
    endif
    ifdef SCREEN
    	@echo $(DL)screenname "$(SCREEN)"$(DL) >> $@
    else
    	@echo $(DL)screenname "DEFAULT"$(DL) >> $@
    endif
    ifeq ($(DB),DEBUG)
    	@echo $(DL)debug$(DL) >> $@
    endif
    
    	@echo $(DL)threadname "$^"$(DL) >> $@
    ifdef XDCOPT
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)xdcdata $(@:.def=.xdc)$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    endif
    ifeq ($(LDRING),0)
    	@echo $(DL)flag_on 16$(DL) >> $@
    endif
    ifeq ($(LDRING),3)
    	@echo $(DL)flag_on 512$(DL) >> $@
    endif
    ifeq ($(LIBARCH),CLIB)
    	@echo $(DL)start _Prelude$(DL) >> $@
    	@echo $(DL)exit _Stop$(DL) >> $@
    	@echo $(DL)import @$(SDK_CLIB)/imports/clib.imp$(DL) >> $@
    	@echo $(DL)import @$(SDK_CLIB)/imports/threads.imp$(DL) >> $@
    	@echo $(DL)import @$(SDK_CLIB)/imports/nlmlib.imp$(DL) >> $@
    	@echo $(DL)import @$(SDK_CLIB)/imports/socklib.imp$(DL) >> $@
    	@echo $(DL)module clib$(DL) >> $@
    else
    	@echo $(DL)flag_on 64$(DL) >> $@
    	@echo $(DL)pseudopreemption$(DL) >> $@
    	@echo $(DL)start _LibCPrelude$(DL) >> $@
    	@echo $(DL)exit _LibCPostlude$(DL) >> $@
    	@echo $(DL)check _LibCCheckUnload$(DL) >> $@
    	@echo $(DL)import @$(SDK_LIBC)/imports/libc.imp$(DL) >> $@
    	@echo $(DL)import @$(SDK_LIBC)/imports/netware.imp$(DL) >> $@
    	@echo $(DL)module libc$(DL) >> $@
    endif
    ifdef MODULES
    	@echo $(DL)module $(MODULES)$(DL) >> $@
    endif
    ifdef EXPORTS
    	@echo $(DL)export $(EXPORTS)$(DL) >> $@
    endif
    ifdef IMPORTS
    	@echo $(DL)import $(IMPORTS)$(DL) >> $@
    endif
    ifeq ($(LD),nlmconv)
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)input $(PRELUDE)$(DL) >> $@
    
    	@echo $(DL)output $(notdir $(@:.def=.nlm))$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    endif
    
    config.h: Makefile.netware
    	@echo Creating $@
    	@echo $(DL)/* $@ for NetWare target.$(DL) > $@
    	@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)#ifndef NETWARE$(DL) >> $@
    	@echo $(DL)#error This $(notdir $@) is created for NetWare platform!$(DL) >> $@
    	@echo $(DL)#endif$(DL) >> $@
    
    	@echo $(DL)#define OS "i586-pc-libc-NetWare"$(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) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)#define HAVE_ARPA_INET_H 1$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)#define HAVE_ARPA_NAMESER_H 1$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)#define HAVE_ASSERT_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_DLFCN_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_DLOPEN 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_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_MALLOC_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_NETINET_IN_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_RECV 1$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)#define HAVE_SELECT 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SEND 1$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@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) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@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_STRUCT_ADDRINFO 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRUCT_IN6_ADDR 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRUCT_SOCKADDR_IN6 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRUCT_TIMEVAL 1$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)#define HAVE_SYS_PARAM_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_SYS_SELECT_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 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) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)#define RETSIGTYPE void$(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) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)#define SIZEOF_CURL_OFF_T 4$(DL) >> $@
    
    	@echo $(DL)#define SIZEOF_STRUCT_IN6_ADDR 16$(DL) >> $@
    	@echo $(DL)#define SIZEOF_STRUCT_IN_ADDR 4$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)#define STDC_HEADERS 1$(DL) >> $@
    	@echo $(DL)#define TIME_WITH_SYS_TIME 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_AF_INET6 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_PF_INET6 1$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ifdef NW_WINSOCK
    	@echo $(DL)#define HAVE_CLOSESOCKET 1$(DL) >> $@
    else
    	@echo $(DL)#define HAVE_SYS_TYPES_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_SYS_SOCKET_H 1$(DL) >> $@
    	@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) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ifdef OLD_NOVELLSDK
    	@echo $(DL)#define socklen_t int$(DL) >> $@
    endif
    
    arpa/nameser.h: nameser.h
    	@echo Fix missing header $@
    
    	@-mkdir arpa
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@$(CP) $< arpa