
$(bin)${CONSTITUENT}.make :: build_library_links dirs
	@echo " building ${CONSTITUENT}.make"; \
	  $(cmtexe) build constituent_makefile ${CONSTITUENT} -quiet -tag=$(tags); \
	  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 tags=$(tags) $(MAKEFLAGS) build_strategy=keep_makefiles ${CONSTITUENT}

${CONSTITUENT}clean :: $(${CONSTITUENT}clean_dependencies) ##$(bin)${CONSTITUENT}.make
	@if test -f $(bin)${CONSTITUENT}.make; then \
	  echo " starting ${CONSTITUENT}clean"; \
  	  $(MAKE) -f $(bin)${CONSTITUENT}.make tags=$(tags) $(MAKEFLAGS) build_strategy=keep_makefiles ${CONSTITUENT}clean; \
	fi



