
$(bin)${CONSTITUENT}.nmake :: dirs
	@echo (constituents.make) Building ${CONSTITUENT}.nmake
	@set include=$(include)
	@set lib=$(lib)
	@$(cmtexe) build -nmake constituent_makefile ${CONSTITUENT} -tag=$(tags)
	@move ${CONSTITUENT}.nmake $(bin)

${CONSTITUENT} :: $(${CONSTITUENT}_dependencies) $(bin)${CONSTITUENT}.nmake
	@echo (constituents.make) Starting ${CONSTITUENT}
	@set include=$(include)
	@set lib=$(lib)
	@$(MAKE) /nologo /f $(bin)${CONSTITUENT}.nmake $(MAKEFLAGS) build_strategy=keep_makefiles ${CONSTITUENT} tag=$(tags)

${CONSTITUENT}clean :: $(${CONSTITUENT}clean_dependencies) $(bin)${CONSTITUENT}.nmake
	@echo (constituents.make) Starting ${CONSTITUENT}clean
	@set include=$(include)
	@set lib=$(lib)
	@$(MAKE) /nologo /f $(bin)${CONSTITUENT}.nmake $(MAKEFLAGS) build_strategy=keep_makefiles ${CONSTITUENT}clean tag=$(tags)

