* INSTALL
+ Added new section: HOW TO DO A PARTIAL [RE]BUILD
This wouldn't have been possible a week ago, the
situation was so much different and complicated for
various cases.
! Cleaned msys/cygwin/<DIR> references and NOTEs.
* config/dyn.mk
* config/bin.mk
* config/global.mk
+ config/bsd/libs.mk
* config/bsd/gcc.mk
+ config/hpux/libs.mk
* config/hpux/gcc.mk
+ config/darwin/libs.mk
* config/darwin/gcc.mk
* config/darwin/icc.mk
+ config/linux/libs.mk
* config/linux/global.mk
+ config/sunos/libs.mk
* config/sunos/gcc.mk
* config/sunos/sunpro.mk
% Moved "system" library logic to compiler libs.mk files
for all *nix compilers.
* config/dos/djgpp.mk
* config/global.mk
* DJGPP with win-based make messages converted to a warning
and moved next to the other similar warning detecting
another non-ideal combination.
29 lines
568 B
Makefile
29 lines
568 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
all : first
|
|
|
|
BIN_EXT :=
|
|
DYN_EXT := .so
|
|
DYN_PREF := lib
|
|
|
|
HB_GT_LIBS += gttrm
|
|
|
|
ifeq ($(HB_SHELL),sh)
|
|
ifneq ($(filter $(HB_COMPILER),gcc icc),)
|
|
ifeq ($(filter -fPIC,$(HB_USER_CFLAGS)),)
|
|
ifeq ($(filter -fpic,$(HB_USER_CFLAGS)),)
|
|
_UNAME_M := $(shell uname -m)
|
|
ifeq ($(findstring 86,$(_UNAME_M)),)
|
|
HB_CFLAGS += -fPIC
|
|
else
|
|
ifneq ($(findstring 64,$(_UNAME_M)),)
|
|
HB_CFLAGS += -fPIC
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|