Files
harbour-core/harbour/Makefile
Viktor Szakats b7f36c8b71 2009-08-11 17:14 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* Makefile
    % Using := instead of =

  * tests/Makefile
    - Deleted support for 'pm' envvar.

  * config/global.cf
    + Added PM envvar to list of misc config vars.
2009-08-11 15:14:37 +00:00

48 lines
843 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