* harbour/contrib/hbmsql/msql.h
* updated for [Open]Watcom builds. Now DOS OpenWatcom builds
works fine except hbbmcdx which needs special trick for long
file names. Question: Should we change filenames in this library
to 8.3 standard?
* harbour/config/none.cf
! fixed to work with DOS and pure command.com
29 lines
324 B
CFEngine3
29 lines
324 B
CFEngine3
#
|
|
# $Id$
|
|
#
|
|
|
|
ifneq ($(HB_ARCHITECTURE),)
|
|
ifneq ($(HB_COMPILER),)
|
|
|
|
CMDPREF:=
|
|
ifeq ($(SHLVL),)
|
|
ifneq ($(COMSPEC),)
|
|
CMDPREF:=$(COMSPEC) /C
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(LIBNAME),)
|
|
DIR_RULE := @$(CMDPREF)echo "The '$(LIBNAME)' library ignored."
|
|
else
|
|
DIR_RULE :=
|
|
endif
|
|
|
|
all : first
|
|
|
|
|
|
first clean install::
|
|
$(DIR_RULE)
|
|
|
|
endif
|
|
endif
|