
$(bin)${CONSTITUENT}.make :: dirs
	@$(cmtexe) build constituent_makefile ${CONSTITUENT} -tag=$(tag); \
	  if test ! "$(bin)" = "./"; then /bin/mv -f ${CONSTITUENT}.make $(bin); fi

${CONSTITUENT} :: $(${CONSTITUENT}_dependencies) $(bin)${CONSTITUENT}.make
	@echo " starting ${CONSTITUENT}"
	@$(MAKE) -f $(bin)${CONSTITUENT}.make build_strategy=keep_makefiles ${CONSTITUENT}

${CONSTITUENT}clean :: $(${CONSTITUENT}clean_dependencies) $(bin)${CONSTITUENT}.make
	@echo " starting ${CONSTITUENT}clean"
	@$(MAKE) -f $(bin)${CONSTITUENT}.make build_strategy=keep_makefiles ${CONSTITUENT}clean


