- source
+ src
* src/Makefile
* src/dynlib/mt/Makefile
* src/dynlib/Makefile
* INSTALL
* Makefile
* ChangeLog
* harbour.spec
* mpkg_tgz.sh
* Renamed 'source' dir to 'src' to move closer to other FOSS
projects. It's also easier to type, plus it has the side
effect that some cmdlines will be shorter in the
build process.
35 lines
725 B
Makefile
35 lines
725 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
ifneq ($(DYNDIRLIST_BASE),)
|
|
|
|
DYNDIRLIST := $(DYNDIRLIST_BASE) src/vm
|
|
DYNNAME := $(HB_DYNLIB_ST)
|
|
DYNNAME2 := $(HB_DYNLIB_BASE_ST)
|
|
|
|
DIRS := mt
|
|
|
|
include $(TOP)$(ROOT)config/dyn.mk
|
|
include $(TOP)$(ROOT)config/dir.mk
|
|
|
|
ifneq ($(INSTALL_RULE_DYN),)
|
|
ifneq ($(HB_LIB_INSTALL),)
|
|
ifneq ($(IMP_FILE),)
|
|
INSTALL_FILES := $(IMP_FILE)
|
|
INSTALL_DIR := $(HB_LIB_INSTALL)
|
|
include $(TOP)$(ROOT)config/install.mk
|
|
endif
|
|
endif
|
|
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
|