The only reason to use this is if you are lazy enough to write the same command in each folder where a Makefile
is.
g++ main.cpp -o main.exe
./main.exe
I wanted to make a program that will recursively search each folder for a Makefile and run it. C++ is fast(er) than Python so it's only fitting. I really didn't want to have to cd
in to each folder, run make build
then cd
out for each of the folders, so a program was created.
Made by Taran Nagra