* INSTALL
* Minor.
* config/global.cf
+ Added screen dump of build settings. Initial version,
only settings having standard names are being shown.
+ Added some new links to comment.
! Fixed $(info ...) usage protection.
* Makefile
% Using ':=' assignments where possible.
! Fixed to choose OS/2 postinst script based on shell, not
HB_ARCHITECTURE.
* Indentation.
* make_gnu.bat
+ Added alternative GNU Make executable names in comment.
* source/compiler/cmdcheck.c
+ Added support for --help cmdline option.
* config/dir.cf
* Indentation.
48 lines
824 B
Makefile
48 lines
824 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ./
|
|
|
|
ifeq ($(HB_HOST_BUILD),yes)
|
|
|
|
DIRS :=\
|
|
source \
|
|
|
|
else
|
|
|
|
ifeq ($(HB_HOST_BUILD),lib)
|
|
HB_UTIL_DIR :=
|
|
else
|
|
HB_UTIL_DIR := utils{source}
|
|
endif
|
|
|
|
DIRS :=\
|
|
doc \
|
|
include \
|
|
source \
|
|
$(HB_UTIL_DIR) \
|
|
contrib{source} \
|
|
external \
|
|
|
|
endif
|
|
|
|
ifeq ($(HB_POSTINST),)
|
|
ifneq ($(HB_ROOTPOSTINST),)
|
|
HB_POSTINST := $(HB_ROOTPOSTINST) $(HB_POSTINSTPARAM)
|
|
else
|
|
# TOOPT: Use HB_SHELL variable
|
|
ifneq ($(SHLVL),)
|
|
HB_POSTINST = $(TOP)$(ROOT)bin/postinst.sh $(HB_POSTINSTPARAM)
|
|
else
|
|
ifneq ($(OS2_SHELL),)
|
|
HB_POSTINST = $(subst /,\,$(TOP)$(ROOT)bin/postinst.cmd) $(HB_POSTINSTPARAM)
|
|
else
|
|
HB_POSTINST = $(subst /,\,$(TOP)$(ROOT)bin/postinst.bat) $(HB_POSTINSTPARAM)
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
include $(ROOT)config/dir.cf
|