* config/global.cf
+ Added new shell detection logic (not used yet)
+ Added experimental HB_HOST_ARCH (host architecture) and
HB_HOST_BIN_EXT detection. Extra screen messages will be
deleted later.
Currently 3.81 GNU Make is required (for the screen messages).
+ Moved DIRSEP init here.
+ Moved CMDPREF init here.
+ Moved CompSpec detection here.
* config/none.cf
% Using global.cf for some central logic.
* config/c.cf
* config/rules.cf
% DIRSEP init deleted, now in global.cf
23 lines
279 B
CFEngine3
23 lines
279 B
CFEngine3
#
|
|
# $Id$
|
|
#
|
|
|
|
ifneq ($(HB_ARCHITECTURE),)
|
|
ifneq ($(HB_COMPILER),)
|
|
|
|
include $(TOP)$(ROOT)config/global.cf
|
|
|
|
ifneq ($(LIBNAME),)
|
|
DIR_RULE := @$(CMDPREF)echo "The '$(LIBNAME)' library ignored."
|
|
else
|
|
DIR_RULE :=
|
|
endif
|
|
|
|
all : first
|
|
|
|
first clean install::
|
|
$(DIR_RULE)
|
|
|
|
endif
|
|
endif
|