SHELL = /bin/bash

help :
	@echo
	@echo "             ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓"
	@echo "             ┃ only the following actions are accepted:           ┃"
	@echo "             ┃   help       : these lines                         ┃"
	@echo "             ┃   distclean  : clean all the compiler's folder     ┃"
	@echo "             ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛"
	@echo

distclean :
	@echo
	@echo -e "  → making distclean in:\n"

	@echo -e "    GNU_GFC ...   \c"
	@cd GNU_GFC && $(MAKE) -s distclean
	@cd GNU_GFC && rm -f Makefile.config && cp ../config/Makefile.noconfig Makefile.config
	@echo -e "done"

	@echo -e "    INTEL_IFC ... \c"
	@cd INTEL_IFC && $(MAKE) -s distclean
	@cd INTEL_IFC && rm -f Makefile.config && cp ../config/Makefile.noconfig Makefile.config
	@echo -e "done"

	@echo

