#! gmake # Build all the tools plugins supported on Windows DIRS= # These should be fairly xp, but may require extra library # commented ones are not yet ready [may crash or fail to compile] #DIRS+= abiCAPI #DIRS+= abicommand #DIRS+= abidicdl DIRS+= abipaint DIRS+= aiksaurus DIRS+= babelfish DIRS+= festvox DIRS+= freetranslation #DIRS+= gda #DIRS+= gdict DIRS+= google #DIRS+= gypsython DIRS+= link-grammar #DIRS+= ots #DIRS+= referee DIRS+= urldict DIRS+= wikipedia ################################################################################ LOOP_OVER_DIRS = \ @for d in $(DIRS); do \ if test -d $$d; then \ set -e; \ echo "$(MAKE) -C $$d $@"; \ $(MAKE) -C $$d $@; \ set +e; \ else \ echo "Skipping non-directory $$d..."; \ fi; \ done ################################################################################ all:: build build:: @echo Building tools plugins. +$(LOOP_OVER_DIRS) @echo Finished building tools plugins.