* harbour/config/os2/gcc.cf
* harbour/make_gnu_os2.cmd
* moved -DTCPV40HDRS to make_gnu_os2.cmd and added small description
about this macro. By default is enabled, can be disabled by
setting environment variable HB_OS2_TCP32 to 'yes', f.e.
SET HB_OS2_TCP32=yes
David and Maurilio, please check me.
99 lines
2.3 KiB
CFEngine3
99 lines
2.3 KiB
CFEngine3
#
|
|
# $Id$
|
|
#
|
|
|
|
include $(TOP)$(ROOT)config/$(HB_ARCHITECTURE)/global.cf
|
|
|
|
OBJ_EXT = .o
|
|
EXE_EXT = .exe
|
|
LIB_PREF =
|
|
LIB_EXT = .a
|
|
|
|
CC = gcc
|
|
CC_IN = -c
|
|
CC_OUT = -o
|
|
CPPFLAGS = -I. -I$(HB_INC_COMPILE)
|
|
CFLAGS = -Wall -W -O3
|
|
|
|
LD = gcc
|
|
LDFLAGS =
|
|
# NOTE: The ending space after -o is important, please preserve it.
|
|
# Now solved with '$(subst x,x, )' expression.
|
|
LD_OUT = -o$(subst x,x, )
|
|
|
|
ifeq ($(C_MAIN),)
|
|
ifeq ($(HB_GT_LIB),os2pm)
|
|
# If building a PM program, override the main object.
|
|
LDFLAGS +=$(TOP)$(ROOT)source/vm/$(HB_ARCH)/mainpm.o
|
|
endif
|
|
endif
|
|
|
|
# Add all libraries specified in CONTRIBS and LIBS.
|
|
ifeq ($(HB_LIB_COMPILE),)
|
|
LINKPATHS += -L$(LIB_DIR)
|
|
else
|
|
LINKPATHS += -L$(HB_LIB_COMPILE)
|
|
endif
|
|
#LINKLIBS += -Wl,-(
|
|
LINKLIBS += $(foreach lib, $(CONTRIBS), -l$(subst lib,,$(lib)))
|
|
LINKLIBS += $(foreach lib, $(LIBS), -l$(lib))
|
|
|
|
# If LIBS specifies the rdd library, add all DB drivers.
|
|
ifeq ($(findstring rdd,$(LIBS)),rdd)
|
|
LINKLIBS += $(foreach drv, $(HB_DB_DRIVERS), -l$(drv))
|
|
endif
|
|
|
|
# Add the specified GT driver library
|
|
ifeq ($(findstring rtl,$(LIBS)),rtl)
|
|
ifeq ($(C_MAIN),)
|
|
ifeq ($(findstring os2pm,$(HB_GT_LIB)),os2pm)
|
|
# Special handling for PM mode
|
|
LINKLIBS += -l$(HB_GT_LIB)
|
|
LINKLIBS += -lgtos2
|
|
else
|
|
|
|
LINKLIBS += $(foreach gt, $(HB_GT_LIBS), -l$(gt)) -lhbrtl
|
|
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
# add socket library
|
|
LINKLIBS += -lsocket
|
|
|
|
#LINKLIBS += -Wl,-)
|
|
# statical linking with GCC 3.2.2 libc as not require its presence on user system
|
|
LDFLAGS += $(LINKPATHS)
|
|
|
|
ifeq ($(C_MAIN),)
|
|
ifeq ($(HB_GT_LIB),os2pm)
|
|
# Override the default link rule in order to add a call to emxbind
|
|
LD_RULE = $(LD) $(CFLAGS) $(LD_OUT)$@ $(^F) $(LDFLAGS) $(L_USR) $(LINKLIBS) & emxbind -ep $@
|
|
endif
|
|
endif
|
|
|
|
# Note: The empty line directly before 'endef' HAVE TO exist!
|
|
# It causes that every echo command will be separated by LF
|
|
define lib_object
|
|
echo ADDMOD $(file) >> __lib__.tmp
|
|
|
|
endef
|
|
|
|
# We have to use a script to overcome the AR limit of max 850 characters
|
|
# in commmand line
|
|
define create_library
|
|
IF EXIST $(OS2_LIB_ARCH) $(RM) $(OS2_LIB_ARCH)
|
|
echo CREATE $(LIB_DIR)/$@ > __lib__.tmp
|
|
$(foreach file, $(^F), $(lib_object))
|
|
echo SAVE >> __lib__.tmp
|
|
echo END >> __lib__.tmp
|
|
$(AR) -M < __lib__.tmp
|
|
endef
|
|
|
|
# Under OS/2 || isn't a command separator (inside a shell, that is); correct separator is &
|
|
AR = ar
|
|
ARFLAGS = $(A_USR)
|
|
AR_RULE = $(create_library) & $(RM) __lib__.tmp
|
|
|
|
include $(TOP)$(ROOT)config/rules.cf
|