some minor Makefile tweaks; mainly for crosscompiling.

This commit is contained in:
Guenter Knauf 2009-04-09 03:13:51 +00:00
parent e63cbd907f
commit 2a39b32b1a
4 changed files with 26 additions and 25 deletions

View File

@ -5,7 +5,7 @@
## ##
## Comments to: Guenter Knauf <eflash@gmx.net> ## Comments to: Guenter Knauf <eflash@gmx.net>
## ##
## $Id: Makefile.netware,v 1.13 2009/03/06 07:25:37 gknauf Exp $ ## $Id: Makefile.netware,v 1.14 2009/04/09 03:13:51 gknauf Exp $
# #
######################################################################### #########################################################################
@ -21,7 +21,7 @@ endif
# Edit the path below to point to the base of your OpenSSL package. # Edit the path below to point to the base of your OpenSSL package.
ifndef OPENSSL_PATH ifndef OPENSSL_PATH
OPENSSL_PATH = ../../openssl-0.9.8j OPENSSL_PATH = ../../openssl-0.9.8k
endif endif
# Edit the path below to point to your Distribution folder. # Edit the path below to point to your Distribution folder.
@ -76,7 +76,7 @@ ifdef METROWERKS
MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support/Metrowerks Support MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support/Metrowerks Support
CC = mwccnlm CC = mwccnlm
else else
CC = gcc CC = $(CROSSPREFIX)gcc
endif endif
CP = cp -afv CP = cp -afv
# RM = rm -f # RM = rm -f
@ -119,12 +119,12 @@ else
CFLAGS += -align 1 CFLAGS += -align 1
endif endif
else else
LD = nlmconv LD = $(CROSSPREFIX)nlmconv
LDFLAGS = -T LDFLAGS = -T
AR = ar AR = $(CROSSPREFIX)ar
ARFLAGS = -cq ARFLAGS = -cq
LIBEXT = a LIBEXT = a
RANLIB = ranlib RANLIB = $(CROSSPREFIX)ranlib
CFLAGS += -fno-builtin -fpcc-struct-return -fno-strict-aliasing CFLAGS += -fno-builtin -fpcc-struct-return -fno-strict-aliasing
CFLAGS += -Wall # -pedantic CFLAGS += -Wall # -pedantic
#CFLAGS += -Wno-pointer-sign #CFLAGS += -Wno-pointer-sign

View File

@ -5,7 +5,7 @@
## ##
## Comments to: Guenter Knauf <eflash@gmx.net> ## Comments to: Guenter Knauf <eflash@gmx.net>
## ##
## $Id: Makefile.netware,v 1.9 2009/03/06 07:25:37 gknauf Exp $ ## $Id: Makefile.netware,v 1.10 2009/04/09 03:13:52 gknauf Exp $
# #
######################################################################### #########################################################################
@ -21,7 +21,7 @@ endif
# Edit the path below to point to the base of your OpenSSL package. # Edit the path below to point to the base of your OpenSSL package.
ifndef OPENSSL_PATH ifndef OPENSSL_PATH
OPENSSL_PATH = ../../../openssl-0.9.8j OPENSSL_PATH = ../../../openssl-0.9.8k
endif endif
# Edit the var below to enable static linking of libssh2 and libz # Edit the var below to enable static linking of libssh2 and libz
@ -70,7 +70,7 @@ ifdef METROWERKS
MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support/Metrowerks Support MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support/Metrowerks Support
CC = mwccnlm CC = mwccnlm
else else
CC = gcc CC = $(CROSSPREFIX)gcc
endif endif
CP = cp -afv CP = cp -afv
# RM = rm -f # RM = rm -f
@ -131,7 +131,7 @@ SDK_CLIB = $(NDK_ROOT)/nwsdk
SDK_LIBC = $(NDK_ROOT)/libc SDK_LIBC = $(NDK_ROOT)/libc
SNPRINTF = $(NDKBASE)/snprintf SNPRINTF = $(NDKBASE)/snprintf
INCLUDES = -I. -I../../include INCLUDES = -I.. -I../../include
LDLIBS = LDLIBS =

View File

@ -5,7 +5,7 @@
## ##
## Comments to: Guenter Knauf <eflash@gmx.net> ## Comments to: Guenter Knauf <eflash@gmx.net>
## ##
## $Id: Makefile.win32,v 1.10 2009/03/06 07:25:37 gknauf Exp $ ## $Id: Makefile.win32,v 1.11 2009/04/09 03:13:52 gknauf Exp $
# #
######################################################################### #########################################################################
@ -18,7 +18,7 @@ WITH_ZLIB = 1
# Edit the path below to point to the base of your OpenSSL package. # Edit the path below to point to the base of your OpenSSL package.
ifndef OPENSSL_PATH ifndef OPENSSL_PATH
OPENSSL_PATH = ../../openssl-0.9.8j OPENSSL_PATH = ../../openssl-0.9.8k
endif endif
# Edit the path below to point to your Distribution folder. # Edit the path below to point to your Distribution folder.
@ -63,7 +63,7 @@ endif
ifdef METROWERKS ifdef METROWERKS
CC = mwcc CC = mwcc
else else
CC = $(CRPREFIX)gcc CC = $(CROSSPREFIX)gcc
endif endif
CP = cp -afv CP = cp -afv
# RM = rm -f # RM = rm -f
@ -91,13 +91,13 @@ CFLAGS += -nostdinc -gccinc -msgstyle gcc -inline off -opt nointrinsics -proc 58
CFLAGS += -ir "$(METROWERKS)/MSL" -ir "$(METROWERKS)/Win32-x86 Support" CFLAGS += -ir "$(METROWERKS)/MSL" -ir "$(METROWERKS)/Win32-x86 Support"
CFLAGS += -w on,nounused,nounusedexpr # -ansi strict CFLAGS += -w on,nounused,nounusedexpr # -ansi strict
else else
LD = $(CRPREFIX)gcc LD = $(CROSSPREFIX)gcc
RC = $(CRPREFIX)windres RC = $(CROSSPREFIX)windres
LDFLAGS = -s -shared -Wl,--out-implib,$(TARGET)dll.a LDFLAGS = -s -shared -Wl,--out-implib,$(TARGET)dll.a
AR = $(CRPREFIX)ar AR = $(CROSSPREFIX)ar
ARFLAGS = -cq ARFLAGS = -cq
LIBEXT = a LIBEXT = a
RANLIB = $(CRPREFIX)ranlib RANLIB = $(CROSSPREFIX)ranlib
#LDLIBS += -lwsock32 #LDLIBS += -lwsock32
LDLIBS += -lws2_32 LDLIBS += -lws2_32
RCFLAGS = -O coff -i RCFLAGS = -O coff -i

View File

@ -5,7 +5,7 @@
## ##
## Comments to: Guenter Knauf <eflash@gmx.net> ## Comments to: Guenter Knauf <eflash@gmx.net>
## ##
## $Id: Makefile.win32,v 1.7 2009/03/06 07:25:49 gknauf Exp $ ## $Id: Makefile.win32,v 1.8 2009/04/09 03:14:05 gknauf Exp $
# #
######################################################################### #########################################################################
@ -16,7 +16,7 @@ endif
# Edit the path below to point to the base of your OpenSSL package. # Edit the path below to point to the base of your OpenSSL package.
ifndef OPENSSL_PATH ifndef OPENSSL_PATH
OPENSSL_PATH = ../../../openssl-0.9.8j OPENSSL_PATH = ../../../openssl-0.9.8k
endif endif
# Edit the var below to enable static linking of libssh2 and libz # Edit the var below to enable static linking of libssh2 and libz
@ -51,7 +51,7 @@ endif
ifdef METROWERKS ifdef METROWERKS
CC = mwcc CC = mwcc
else else
CC = gcc CC = $(CROSSPREFIX)gcc
endif endif
CP = cp -afv CP = cp -afv
# RM = rm -f # RM = rm -f
@ -79,19 +79,20 @@ CFLAGS += -nostdinc -gccinc -msgstyle gcc -inline off -opt nointrinsics -proc 58
CFLAGS += -ir "$(METROWERKS)/MSL" -ir "$(METROWERKS)/Win32-x86 Support" CFLAGS += -ir "$(METROWERKS)/MSL" -ir "$(METROWERKS)/Win32-x86 Support"
CFLAGS += -w on,nounused,nounusedexpr # -ansi strict CFLAGS += -w on,nounused,nounusedexpr # -ansi strict
else else
LD = gcc LD = $(CROSSPREFIX)gcc
RC = windres RC = $(CROSSPREFIX)windres
LDFLAGS = -s LDFLAGS = -s
AR = ar AR = $(CROSSPREFIX)ar
ARFLAGS = -cq ARFLAGS = -cq
LIBEXT = a LIBEXT = a
#LDLIBS += -lwsock32 #LDLIBS += -lwsock32
LDLIBS += -lws2_32 LDLIBS += -lws2_32
RCFLAGS = -O coff -i RCFLAGS = -O coff -i
CFLAGS += -fno-strict-aliasing -Wall -Wno-unused # -pedantic CFLAGS += -fno-strict-aliasing
CFLAGS += -Wall #-Wno-unused #-pedantic
endif endif
INCLUDES = -I. -I.. -I../../include INCLUDES = -I.. -I../../include
INCLUDES += -I$(OPENSSL_PATH)/outinc -I$(OPENSSL_PATH)/outinc/openssl INCLUDES += -I$(OPENSSL_PATH)/outinc -I$(OPENSSL_PATH)/outinc/openssl
#LIBPATH += -L$(OPENSSL_PATH)/out #LIBPATH += -L$(OPENSSL_PATH)/out
LIBPATH += -L.. LIBPATH += -L..