Files
harbour-core/harbour/config/dir.cf

17 lines
249 B
CFEngine3

#
# $Id$
#
all : first
first clean install ::
ifeq ($(SHLVL),)
@cmd /c FOR /D %d IN ($(DIRS)) DO @$(MAKE) -C %d $@
else # ! Windows
@for d in $(DIRS); do \
if [ -d $$d ]; then \
$(MAKE) -C $$d $@; \
fi \
done
endif # ! Windows