* source/dynlib/mt/Makefile
* source/dynlib/Makefile
* source/Makefile
- Deleted extra dos platform guards. It's not needed. I hope
it won't cause bad side effects.
* config/common/watcom.mk
! Fixed to not use $? in LD_RULE. Typo of yesterday.
! Restored remaining $? to $^. It exploited some bad side effects
in hbpp lib.
35 lines
640 B
Makefile
35 lines
640 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
ifneq ($(DYNDIRLIST_BASE),)
|
|
|
|
DYNDIRLIST := $(DYNDIRLIST_BASE) source/vm
|
|
DYNNAME := harbour$(DYNNAME_POST)
|
|
|
|
DIRS := mt
|
|
|
|
include $(TOP)$(ROOT)config/dyn.mk
|
|
include $(TOP)$(ROOT)config/dir.mk
|
|
|
|
INSTALL_RULE_DYN := $(INSTALL_RULE)
|
|
|
|
ifneq ($(HB_LIB_INSTALL),)
|
|
INSTALL_FILES := $(IMP_FILE)
|
|
INSTALL_DIR := $(HB_LIB_INSTALL)
|
|
HB_INSTALL_DEF := yes
|
|
include $(TOP)$(ROOT)config/install.mk
|
|
endif
|
|
|
|
install::
|
|
$(INSTALL_RULE_DYN)
|
|
|
|
else
|
|
$(warning ! Warning: Please run make from one level up)
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|