* INSTALL
* config/rules.mk
+ config/res.mk
* config/bin.mk
* config/wce/global.mk
* config/wce/mingwarm.mk
* config/wce/poccarm.mk
* config/wce/msvcarm.mk
* config/common/watcom.mk
* config/win/xcc.mk
* config/win/mingw.mk
* config/win/pocc.mk
* config/win/bcc.mk
* config/win/watcom.mk
* config/win/cygwin.mk
* config/win/global.mk
* config/win/msvc.mk
* config/os2/watcom.mk
* config/os2/gcc.mk
* config/os2/global.mk
+ Added support to GNU Make system to compile and link resources
on win, wce and os2 platforms.
* bin/postinst.bat
+ Deleted requirements from local comment. These are
documented in INSTALL.
20 lines
388 B
Makefile
20 lines
388 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
all : first
|
|
|
|
RES_EXT := .res
|
|
BIN_EXT := .exe
|
|
DYN_EXT := .dll
|
|
|
|
HB_GT_LIBS += gtwvt gtgui gtwin
|
|
|
|
# kernel32: needed by some compilers (pocc/watcom)
|
|
# user32: *Clipboard*(), GetKeyState(), GetKeyboardState(), SetKeyboardState(), gtwvt stuff
|
|
# ws2_32/wsock32: hbsocket
|
|
# ws2_32: WSAIoctl()
|
|
# advapi32: GetUserName()
|
|
# gdi32: gtwvt
|
|
SYSLIBS += kernel32 user32 ws2_32 advapi32 gdi32
|