* INSTALL
* Updated dev list max attachment size.
* INSTALL
* config/beos/libs.mk
* config/global.mk
* config/bsd/libs.mk
* config/bin.mk
* config/wce/global.mk
* config/hpux/libs.mk
* config/darwin/libs.mk
* config/dos/djgpp.mk
* config/win/global.mk
* config/linux/libs.mk
* config/os2/gcc.mk
* config/sunos/libs.mk
+ Added support for HB_USER_LIBS build option to specify
extra libs. Note: This is useful only in very special
cases, so pls don't use it unless you exactly know what
you want to do. The libs have to be specced without
prefixes and extensions. It will be added after Harbour
libs and before system libs.
23 lines
516 B
Makefile
23 lines
516 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
all : first
|
|
|
|
BIN_EXT := .exe
|
|
DYN_EXT := .dll
|
|
|
|
HB_GT_LIBS += gtwvt gtgui gtwin
|
|
|
|
# enable UNICODE by default when building for any non-x86 targets (x86_64 or ia64)
|
|
ifneq ($(HB_CPU),x86)
|
|
HB_CFLAGS += -DUNICODE
|
|
endif
|
|
|
|
# kernel32: needed by some compilers (pocc/watcom)
|
|
# user32: *Clipboard*(), MessageBox(), CharToOemBuff(), OemToCharBuff(), GetKeyState(), GetKeyboardState(), SetKeyboardState()
|
|
# ws2_32: hbsocket
|
|
# advapi32: GetUserName()
|
|
# gdi32: gtwvt
|
|
SYSLIBS += kernel32 user32 ws2_32 advapi32 gdi32
|