
$(bin)${CONSTITUENT}.make :: build_library_links dirs
	@echo "------> (constituents.make) 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 "------> (constituents.make) Starting ${CONSTITUENT}"; \
	  $(MAKE) -f $(bin)${CONSTITUENT}.make $(MAKEFLAGS) ${CONSTITUENT}

${CONSTITUENT}clean :: $(${CONSTITUENT}clean_dependencies) ##$(bin)${CONSTITUENT}.make
	@if test -f $(bin)${CONSTITUENT}.make; then \
	  echo "------> (constituents.make) Starting ${CONSTITUENT}clean"; \
	  $(MAKE) -f $(bin)${CONSTITUENT}.make $(MAKEFLAGS) ${CONSTITUENT}clean; \
	  /bin/rm -f $(bin)${CONSTITUENT}.make $(bin)${CONSTITUENT}_dependencies.make; \
	fi



