# Example of possible make problem

all :
	cd ./src; \
	$(MAKE) main

clean :
	cd ./src; \
	$(MAKE) clean

.PHONY : clean all