.PHONY: clean All

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