* config/rules.mk
* config/dos/djgpp.mk
* config/common/watcom.mk
* config/os2/gcc.mk
+ Finished support for HB_LDFLAGS variable (to hold Makefile
local extra linker options). We don't use this feature yet.
* config/sunos/sunpro.mk
+ Setting CXX for sunos/sunpro.mk to make it build .cpp files
without forcing cpp mode explicitly. (suncc seems to do nothing
with .cpp input files.)
* config/bsd/libs.mk
* config/hpux/libs.mk
* config/darwin/libs.mk
* config/sunos/libs.mk
- Deleted commented /usr/X11R6/lib64 lib dir. It's a Linux
distro specific thing.
* config/linux/libs.mk
+ Added comment for /usr/X11R6/lib64
38 lines
697 B
Makefile
38 lines
697 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
SYSLIBS :=
|
|
SYSLIBPATHS :=
|
|
|
|
ifneq ($(HB_LINKING_RTL),)
|
|
ifeq ($(HB_CRS_LIB),)
|
|
HB_CRS_LIB := ncurses
|
|
endif
|
|
ifneq ($(HB_HAS_CURSES),)
|
|
SYSLIBS += $(HB_CRS_LIB)
|
|
endif
|
|
ifneq ($(HB_HAS_SLANG),)
|
|
SYSLIBS += slang
|
|
# In BSD, slang still needs curses :(
|
|
ifneq ($(HB_HAS_CURSES),)
|
|
SYSLIBS += $(HB_CRS_LIB)
|
|
endif
|
|
endif
|
|
ifneq ($(HB_HAS_X11),)
|
|
SYSLIBS += X11
|
|
SYSLIBPATHS += /usr/X11R6/lib
|
|
endif
|
|
|
|
SYSLIBPATHS += /usr/local/lib
|
|
|
|
ifneq ($(filter -DHB_PCRE_REGEX, $(HB_USER_CFLAGS)),)
|
|
SYSLIBS += pcre
|
|
endif
|
|
ifneq ($(filter -DHB_EXT_ZLIB, $(HB_USER_CFLAGS)),)
|
|
SYSLIBS += z
|
|
endif
|
|
endif
|
|
|
|
SYSLIBS += m
|