* config/rules.mk
* config/dyn.mk
! Fixed to handle dynamic lib creation gracefully for targets
where this isn't supported. Now a message will be shown.
+ config/os2-cp.exe
* config/readme.txt
+ Added os2 cp tool. For testing.
* source/pp/Makefile
* source/dynlib/mt/Makefile
* source/dynlib/Makefile
* Minor rename.
39 lines
769 B
Makefile
39 lines
769 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
ifneq ($(DYNDIRLIST_BASE),)
|
|
ifneq ($(HB_ARCHITECTURE),dos)
|
|
|
|
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
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|
|
else
|
|
$(warning ! Warning: Please run make from one level up)
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|