Files
harbour-core/harbour/config/none.cf
Viktor Szakats 0ad6c173e1 2009-07-15 16:49 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* 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
2009-07-15 14:50:51 +00:00

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