Files
harbour-core/harbour/Makefile
Viktor Szakats 73bec3a94a 2009-09-19 00:27 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* INSTALL
  * harbour-win-spec
  * harbour-wce-spec
  * Makefile
  * source/pp/Makefile
  * source/Makefile
  * config/global.mk
    * Renamed HB_HOST_BUILD to HB_BUILD_PART. Values 'yes' changed
      to compiler.
    + Documented HB_BUILD_PART in INSTALL.

  * mpkg_deb.sh
  * mpkg_rpm.sh
  * mpkg_rpm_win.sh
  * mpkg_rpm_wce.sh
    ! Changed bin/pack_src.sh to mpkg_src.sh.
2009-09-18 22:30:44 +00:00

44 lines
645 B
Makefile

#
# $Id$
#
ROOT := ./
ifeq ($(HB_BUILD_PART),compiler)
DIRS := \
source \
else
ifeq ($(HB_BUILD_PART),lib)
HB_UTIL_DIR :=
else
HB_UTIL_DIR := utils{source}
endif
DIRS := \
doc \
include \
external \
source{external} \
$(HB_UTIL_DIR) \
contrib{source} \
endif
include $(ROOT)config/dir.mk
ifeq ($(HB_SHELL),sh)
HB_POSTINST := $(TOP)$(ROOT)bin/postinst.sh
else
ifeq ($(HB_SHELL),os2)
HB_POSTINST := $(subst /,\,$(TOP)$(ROOT)bin/postinst.cmd)
else
HB_POSTINST := $(subst /,\,$(TOP)$(ROOT)bin/postinst.bat)
endif
endif
install::
+$(HB_POSTINST)