.PHONY: clean All

All:
	@echo "----------Building project:[ NewtonsMethod - Debug ]----------"
	@cd "NewtonsMethod" && "$(MAKE)" -f  "NewtonsMethod.mk"
clean:
	@echo "----------Cleaning project:[ NewtonsMethod - Debug ]----------"
	@cd "NewtonsMethod" && "$(MAKE)" -f  "NewtonsMethod.mk" clean
