.PHONY: clean All

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