Works great for about any cpp project
project_root/bin/src/Makefile
- creates
bin/folder at project root .cppfiles located insrc/are built into.ofiles and placed inbin/.ofiles are linked together make your executable at project root
- The
bin/folder is deleted and the executable is deleted
- Does not check header files - run
make clean && makeif you've updated a header file with any significant changes
make help- shows help menu (you probably wont need it now that you read this)make run- updates binaries and executables as neccessary and starts your program