* doc/en-EN/Makefile
* config/dos/global.cf
* config/dos/install.cf
* config/doc.cf
! Fixes to prev. Nothing is simple in the world of DOS.
'copy' restored for general purpose to avoid idiotic
and unavoidable Microsoft xcopy message:
"Does destination specify a file name or directory name on the target
(F = file, D = directory)?"
* Using xcopy for install purposes only.
* Change the way above idiotic message is avoided. Made the
hack local to Makefile. It doesn't work either way, but at
least it lets it run.
* make_gnu.bat
* Minor.
23 lines
286 B
CFEngine3
23 lines
286 B
CFEngine3
#
|
|
# $Id$
|
|
#
|
|
|
|
ifneq ($(HB_ARCHITECTURE),)
|
|
ifneq ($(HB_COMPILER),)
|
|
|
|
include $(TOP)$(ROOT)config/global.cf
|
|
|
|
first::
|
|
|
|
ifeq ($(HB_DOC_INSTALL),)
|
|
install::
|
|
|
|
else
|
|
INSTALL_OBJS = $(DOC_FILES)
|
|
INSTALL_DIR = $(HB_DOC_INSTALL)$(DOC_SUBDIR)
|
|
|
|
include $(TOP)$(ROOT)config/install.cf
|
|
endif
|
|
endif
|
|
endif
|