* debian/rules
* src/pp/Makefile
* src/dynlib/mt/Makefile
* src/dynlib/Makefile
* package/harbour-win.spec
* package/harbour-wce.spec
* package/harbour.spec
* contrib/make.hbs
* utils/hbmk2/hbmk2.1
* utils/hbmk2/hbmk2.prg
* utils/hbrun/hbrun.prg
* utils/hbrun/hbrun.hbp
* utils/hbrun/Makefile
* doc/gmake.txt
* config/postinst.hbs
* config/global.mk
* config/lib.mk
* config/bin.mk
* config/header.mk
* config/dyn.mk
* config/doc.mk
* INSTALL
* Renamed install dir control envvars to be in the same
"namespace": (INCOMPATIBLE if you used to manually
configure these)
HB_BIN_INSTALL -> HB_INSTALL_BIN
HB_LIB_INSTALL -> HB_INSTALL_LIB
HB_DYN_INSTALL -> HB_INSTALL_DYN
HB_INC_INSTALL -> HB_INSTALL_INC
HB_DOC_INSTALL -> HB_INSTALL_DOC
HB_MAN_INSTALL -> HB_INSTALL_MAN
HB_ETC_INSTALL -> HB_INSTALL_ETC
* contrib/hbide/idemisc.prg
- Deleted unused code.
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_INSTALL_LIB),)
|
|
ifneq ($(IMP_FILE),)
|
|
INSTALL_FILES := $(IMP_FILE)
|
|
INSTALL_DIR := $(HB_INSTALL_LIB)
|
|
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
|