* config/wce/mingwarm.mk
* config/win/mingw.mk
* config/win/cygwin.mk
* config/os2/gcc.mk
! Fixed resource compiler binary name to honor CCPREFIX and friends.
* utils/hbrun/Makefile
+ utils/hbrun/hbrun.rc
+ Added resource file to include icon.
; TOFIX: The .ico file path is hard-wired and will break if HB_BUILD_NAME
contains subdirs.
* bin/postinst.bat
- Deleted no more necessary hack to build hbrun with icon using hbmk2.
31 lines
495 B
Makefile
31 lines
495 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
PRG_SOURCES := \
|
|
hbrun.prg \
|
|
|
|
RC_SOURCES := \
|
|
hbrun.rc
|
|
|
|
PRG_MAIN := hbrun.prg
|
|
|
|
LIBS = hbcplr hbpp hbcommon $(HB_LIBS_ST_RDD)
|
|
|
|
ifeq ($(_DEFAULT_INC_DIR),)
|
|
ifneq ($(HB_INC_INSTALL),)
|
|
ifneq ($(HB_INST_PKGPREF),)
|
|
_DEFAULT_INC_DIR := $(HB_INC_INSTALL)
|
|
endif
|
|
endif
|
|
endif
|
|
ifneq ($(_DEFAULT_INC_DIR),)
|
|
HB_PRGFLAGS += -D_DEFAULT_INC_DIR=[$(_DEFAULT_INC_DIR)]
|
|
endif
|
|
|
|
include $(TOP)$(ROOT)config/bin.mk
|