
${CONSTITUENT}.nmake ::
	@set include=$(include)
	@set lib=$(lib)
	@$(cmtexe) build -nmake constituent_makefile ${CONSTITUENT} -tag=$(tag)

##${CONSTITUENT} :: ${CONSTITUENT}.nmake
${CONSTITUENT} :: $(${CONSTITUENT}_dependencies) ${CONSTITUENT}.nmake
	@echo " starting ${CONSTITUENT}"
	@set include=$(include)
	@set lib=$(lib)
	@$(MAKE) /nologo /f ${CONSTITUENT}.nmake $(MAKEFLAGS) build_strategy=keep_makefiles ${CONSTITUENT} tag=$(tag)

##${CONSTITUENT}clean :: ${CONSTITUENT}.nmake
${CONSTITUENT}clean :: $(${CONSTITUENT}clean_dependencies) ${CONSTITUENT}.nmake
	@echo " starting ${CONSTITUENT}clean"
	@set include=$(include)
	@set lib=$(lib)
	@$(MAKE) /nologo /f ${CONSTITUENT}.nmake $(MAKEFLAGS) build_strategy=keep_makefiles ${CONSTITUENT}clean tag=$(tag)

