* /harbour/* -> /*
* moved whole Harbour source tree one level up to
avoid single 'harbour' top dir
60 lines
1.1 KiB
Makefile
60 lines
1.1 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ./
|
|
|
|
include $(ROOT)config/global.mk
|
|
|
|
DIRS :=
|
|
|
|
ifneq ($(wildcard lib/3rd/$(HB_PLATFORM)/$(HB_COMPILER)),)
|
|
DIRS += lib/3rd/$(HB_PLATFORM)/$(HB_COMPILER)
|
|
endif
|
|
|
|
ifeq ($(HB_BUILD_PARTS),compiler)
|
|
|
|
DIRS += \
|
|
src \
|
|
utils{src} \
|
|
|
|
else
|
|
|
|
# When doing a plain clean, we must not clean hbmk2
|
|
# before calling it to clean the contrib area.
|
|
_CONTRIB_FIRST :=
|
|
ifneq ($(filter clean,$(HB_MAKECMDGOALS)),)
|
|
ifeq ($(filter install,$(HB_MAKECMDGOALS)),)
|
|
_CONTRIB_FIRST := yes
|
|
endif
|
|
endif
|
|
|
|
DIRS += \
|
|
doc \
|
|
include \
|
|
src \
|
|
|
|
ifeq ($(_CONTRIB_FIRST),yes)
|
|
|
|
DIRS += \
|
|
contrib{src} \
|
|
utils{contrib} \
|
|
|
|
else
|
|
|
|
DIRS += \
|
|
utils{src} \
|
|
contrib{utils} \
|
|
|
|
endif
|
|
endif
|
|
|
|
include $(ROOT)config/dir.mk
|
|
|
|
ifneq ($(HB_NO_HBSCRIPT),yes)
|
|
|
|
first clean install::
|
|
$(if $(wildcard $(HB_HOST_BIN_DIR)/hbmk2$(HB_HOST_BIN_EXT)),+$(HB_HOST_BIN_DIR)/hbmk2$(HB_HOST_BIN_EXT) $(TOP)$(ROOT)config/postinst.hb $@,@$(ECHO) $(ECHOQUOTE)! Warning: hbmk2 not found, config/postinst.hb skipped.$(ECHOQUOTE))
|
|
|
|
endif
|