Files
harbour-core/config/doc.mk
vszakats 9687850865 2013-03-16 02:10 UTC+0100 Viktor Szakats (harbour syenar.net)
* (all files)
    * stripped svn header
    * minor cleanups
    ; use following command to find out the history of files:
       git log
       git log --follow
       git blame
       git annotate
2013-03-16 02:11:42 +01:00

31 lines
432 B
Makefile

include $(TOP)$(ROOT)config/global.mk
ifneq ($(HB_PLATFORM),)
ifneq ($(HB_COMPILER),)
first::
ifeq ($(HB_INSTALL_DOC),no)
install::
else
ifeq ($(HB_INSTALL_DOC),)
install::
else
INSTALL_FILES := $(DOC_FILES)
INSTALL_DIR := $(HB_INSTALL_DOC)$(DOC_SUBDIR)
include $(TOP)$(ROOT)config/instsh.mk
INSTALL_RULE_DOC := $(INSTALL_RULE)
ifneq ($(INSTALL_RULE_DOC),)
install:: first
$(INSTALL_RULE_DOC)
endif
endif
endif
endif
endif