curl/src/Makefile.netware

266 lines
6.8 KiB
Makefile
Raw Normal View History

2004-03-17 07:46:42 -05:00
#################################################################
#
## Makefile for building curl.nlm (NetWare version - gnu make)
## Use: make -f Makefile.netware
##
## Comments to: Guenter Knauf <eflash@gmx.net>
#
#################################################################
# Edit the path below to point to the base of your Novell NDK.
2004-06-10 13:11:39 -04:00
ifndef NDKBASE
NDKBASE = c:/novell
2004-06-10 13:11:39 -04:00
endif
2004-06-10 21:04:06 -04:00
INSTDIR = ..\curl-$(LIBCURL_VERSION_STR)-bin-nw
2004-03-17 07:46:42 -05:00
# Edit the path below to point to the base of your Zlib sources.
2004-06-10 13:11:39 -04:00
#ZLIB_PATH = ../../zlib-1.2.1
2004-03-17 07:46:42 -05:00
# Edit the vars below to change NLM target settings.
TARGET = curl
VERSION = $(LIBCURL_VERSION)
COPYR = Copyright (c) 1996 - 2004, Daniel Stenberg, <daniel@haxx.se>
DESCR = cURL $(LIBCURL_VERSION_STR) - http://curl.haxx.se
MTSAFE = YES
STACK = 64000
SCREEN = $(TARGET) commandline utility
MODULES = libcurl.nlm
IMPORTS = @../lib/libcurl.imp
# Comment the line below if you dont want to load protected automatically.
LDRING = 3
2004-03-17 07:46:42 -05:00
# Edit the var below to point to your lib architecture.
ifndef LIBARCH
LIBARCH = LIBC
endif
# must be equal to DEBUG or NDEBUG
DB = NDEBUG
# DB = DEBUG
# Optimization: -O<n> or debugging: -g
ifeq ($(DB),NDEBUG)
OPT = -O2
OBJDIR = release
else
OPT = -g
OBJDIR = debug
endif
2004-06-10 21:04:06 -04:00
# Include the version info retrieved from curlver.h
2004-03-17 07:46:42 -05:00
-include $(OBJDIR)/version.inc
# The following line defines your compiler.
ifdef METROWERKS
CC = mwccnlm
else
CC = gcc
endif
2004-06-10 21:04:06 -04:00
CP = cp -afv
2004-03-17 07:46:42 -05:00
# 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:
2004-06-10 22:29:16 -04:00
# http://www.gknw.com/development/prgtools/mkxdc.zip
2004-03-17 07:46:42 -05:00
MPKXDC = mkxdc
# Global flags for all compilers
CFLAGS = $(OPT) -D$(DB) -DNETWARE -nostdinc
CFLAGS += -DUSE_MANUAL
ifeq ($(CC),mwccnlm)
LD = mwldnlm
LDFLAGS = -nostdlib $(PRELUDE) $(OBJDIR)/*.o -o $(OBJDIR)/$(TARGET).nlm -commandfile
2004-06-10 21:04:06 -04:00
CFLAGS += -gccinc -inline off -opt nointrinsics -proc 586
2004-03-17 07:46:42 -05:00
CFLAGS += -relax_pointers
#CFLAGS += -w on
ifeq ($(LIBARCH),LIBC)
PRELUDE = $(SDK_LIBC)/imports/libcpre.o
2004-06-10 21:04:06 -04:00
CFLAGS += -align 4
2004-03-17 07:46:42 -05:00
CFLAGS += -D_POSIX_SOURCE
# CFLAGS += -D__ANSIC__
else
PRELUDE = "$(METROWERKS)/Novell Support/libraries/runtime/prelude.obj"
# CFLAGS += -include "$(METROWERKS)/Novell Support/headers/nlm_prefix.h"
2004-06-10 21:04:06 -04:00
CFLAGS += -align 1
2004-03-17 07:46:42 -05:00
endif
else
LD = nlmconv
LDFLAGS = -T
CFLAGS += -fno-builtin -fpack-struct -fpcc-struct-return
2004-06-10 21:04:06 -04:00
CFLAGS += -Wall # -pedantic
2004-03-17 07:46:42 -05:00
ifeq ($(LIBARCH),LIBC)
PRELUDE = $(SDK_LIBC)/imports/libcpre.gcc.o
CFLAGS += -D_POSIX_SOURCE
# CFLAGS += -D__ANSIC__
else
PRELUDE = $(SDK_CLIB)/imports/clibpre.gcc.o
2004-06-10 13:11:39 -04:00
CFLAGS += -include $(NDKBASE)/nlmconv/genlm.h
2004-03-17 07:46:42 -05:00
endif
endif
LDLIBS =
2004-06-10 13:11:39 -04:00
NDK_ROOT = $(NDKBASE)/ndk
2004-03-17 07:46:42 -05:00
SDK_CLIB = $(NDK_ROOT)/nwsdk
SDK_LIBC = $(NDK_ROOT)/libc
SDK_LDAP = $(NDK_ROOT)/cldapsdk/netware
CURL_INC = ../include
CURL_LIB = ../lib
INCLUDES = -I$(CURL_INC) -I$(CURL_LIB)
2004-06-04 03:02:30 -04:00
ifdef ZLIB_PATH
INCLUDES += -I$(ZLIB_PATH)
CFLAGS += -DHAVE_ZLIB_H -DHAVE_LIBZ
IMPORTS+ = @$(ZLIB_PATH)/nw/zlib.imp
MODULES+ = libz.nlm
endif
2004-03-17 07:46:42 -05:00
ifeq ($(LIBARCH),LIBC)
INCLUDES += -I$(SDK_LIBC)/include -I$(SDK_LIBC)/include/nks
INCLUDES += -I$(SDK_LIBC)/include/winsock
2004-06-11 13:27:03 -04:00
# INCLUDES += -I$(SDK_LDAP)/libc/inc
2004-03-17 07:46:42 -05:00
else
INCLUDES += -I$(SDK_CLIB)/include/nlm -I$(SDK_CLIB)/include
2004-06-11 13:27:03 -04:00
# INCLUDES += -I$(SDK_LDAP)/clib/inc
2004-03-17 07:46:42 -05:00
CFLAGS += -DNETDB_USE_INTERNET
endif
CFLAGS += $(INCLUDES)
ifeq ($(MTSAFE),YES)
XDCOPT = -n
endif
ifeq ($(MTSAFE),NO)
XDCOPT = -u
endif
ifdef XDCOPT
2004-03-17 07:46:42 -05:00
XDCDATA = $(OBJDIR)/$(TARGET).xdc
endif
ifeq ($(OSTYPE),linux)
DL = '
2004-06-10 13:11:39 -04:00
#-include $(NDKBASE)/nlmconv/ncpfs.inc
2004-03-17 07:46:42 -05:00
endif
OBJS = \
$(OBJDIR)/main.o \
$(OBJDIR)/hugehelp.o \
$(OBJDIR)/urlglob.o \
$(OBJDIR)/writeout.o \
$(OBJDIR)/getpass.o \
$(OBJDIR)/homedir.o \
$(OBJDIR)/timeval.o
2004-03-17 07:46:42 -05:00
vpath %.c ../lib
2004-03-17 07:46:42 -05:00
all: $(OBJDIR) $(OBJDIR)/version.inc $(OBJDIR)/$(TARGET).nlm
$(OBJDIR)/%.o: %.c
2004-06-10 21:04:06 -04:00
# @echo Compiling $<
$(CC) $(CFLAGS) -c $< -o $@
2004-03-17 07:46:42 -05:00
2004-06-04 03:02:30 -04:00
$(OBJDIR)/version.inc: $(CURL_INC)/curl/curlver.h $(OBJDIR)
2004-03-17 07:46:42 -05:00
@echo Creating $@
2004-06-04 03:02:30 -04:00
@awk -f ../packages/NetWare/get_ver.awk $< > $@
2004-03-17 07:46:42 -05:00
dist: all
-$(RM) $(OBJDIR)/*.o $(OBJDIR)/$(TARGET).map $(OBJDIR)/$(TARGET).ncv
-$(RM) $(OBJDIR)/$(TARGET).def $(OBJDIR)/version.inc $(XDCDATA)
2004-06-10 21:04:06 -04:00
install: $(INSTDIR) all
2004-03-17 07:46:42 -05:00
@$(CP) $(TARGET).nlm $(INSTDIR)
clean:
-$(RM) -r $(OBJDIR)
2004-06-10 21:04:06 -04:00
$(INSTDIR):
@mkdir $(INSTDIR)
2004-03-17 07:46:42 -05:00
$(OBJDIR):
@mkdir $(OBJDIR)
$(OBJDIR)/$(TARGET).nlm: $(OBJS) $(OBJDIR)/$(TARGET).def $(XDCDATA)
@echo Linking $@
@-$(RM) $@
@$(LD) $(LDFLAGS) $(OBJDIR)/$(TARGET).def
$(OBJDIR)/%.xdc: Makefile.netware
@echo Creating $@
@$(MPKXDC) $(XDCOPT) $@
$(OBJDIR)/%.def: Makefile.netware
@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 "$(TARGET)"$(DL) >> $@
ifdef XDCDATA
@echo $(DL)xdcdata $(XDCDATA)$(DL) >> $@
endif
ifeq ($(LDRING),0)
@echo $(DL)flag_on 16$(DL) >> $@
endif
ifeq ($(LDRING),3)
@echo $(DL)flag_on 512$(DL) >> $@
endif
2004-03-17 07:46:42 -05:00
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) >> $@
2004-06-04 03:02:30 -04:00
# @echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapsdk.imp$(DL) >> $@
# @echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapssl.imp$(DL) >> $@
# @echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapx.imp$(DL) >> $@
2004-03-17 07:46:42 -05:00
@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) >> $@
2004-06-04 03:02:30 -04:00
# @echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapsdk.imp$(DL) >> $@
# @echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapssl.imp$(DL) >> $@
# @echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapx.imp$(DL) >> $@
2004-03-17 07:46:42 -05:00
@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)
@echo $(DL)input $(OBJS)$(DL) >> $@
@echo $(DL)input $(PRELUDE)$(DL) >> $@
@echo $(DL)output $(TARGET).nlm$(DL) >> $@
endif
2004-06-10 16:25:02 -04:00
hugehelp.c: hugehelp.c.cvs
@echo Creating $@
2004-06-10 16:43:46 -04:00
@$(CP) $< $@
2004-06-10 16:25:02 -04:00