# $Revision: 1.10 $ # $Author: baallan $ CCAFE_HOME = ../../.. include $(CCAFE_HOME)/Makefile.Rules ifeq "x$(CCA_USEMPI)" "x1" MPICOMPS=MPIComponent endif # order matters in the following list. SUBDIRS = \ StringConsumerPort \ ParameterPortFactoryTest \ PrinterComponent \ StarterComponent \ GoComponent \ PortTranslatorStarter \ ServiceRegistryTest $(MPICOMPS) all: for i in $(SUBDIRS); do if ! (cd $$i;$(MAKE));then exit -1;fi done depend gen clean src-list: @for i in $(SUBDIRS); do if ! (cd $$i;$(MAKE) $@);then exit -1;fi done