Files
harbour-core/harbour/config/win/dir.cf
Viktor Szakats a25ce4eda5 2009-07-11 18:11 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/win/dir.cf
  * config/os2/dir.cf
  * config/wce/dir.cf
    * Casing synced.
    ; Probably now these rules could be moved to a central
      location.
2009-07-11 16:12:13 +00:00

33 lines
539 B
CFEngine3

#
# $Id$
#
ifeq ($(PM),) # Only traverse directories if not compiling a specific module
ifeq ($(DIRS),) # Empty directory list
DIR_RULE = @echo Done
else
ifeq ($(SHLVL),) # non-bash
DIR_MAKE = $(subst /,\,$(MK))
DIR_LIST = $(subst /,\,$(DIRS))
DIR_RULE = $(COMSPEC) /C for %d in ($(DIR_LIST)) do $(DIR_MAKE) -C %d $@
else # bash
DIR_RULE =\
@for d in $(DIRS); do \
if [ -d $$d ]; then \
$(MAKE) -C $$d $@; \
fi \
done
endif # ! non-bash
endif # ! Empty directory list
endif # ! compiling a specific program module