* harbour-win-spec
* harbour-wce-spec
* INSTALL
* bin/postinst.sh
* Makefile
* source/pp/Makefile
* source/Makefile
* config/global.mk
* HB_BUILD_PART -> HB_BUILD_PARTS (simple rename)
+ HB_BUILD_STRIP added. It's dummy yet. Support will have to
be added on the compiler level and removed from postinst phase.
44 lines
647 B
Makefile
44 lines
647 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ./
|
|
|
|
ifeq ($(HB_BUILD_PARTS),compiler)
|
|
|
|
DIRS := \
|
|
source \
|
|
|
|
else
|
|
|
|
ifeq ($(HB_BUILD_PARTS),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)
|