Works great for about any cpp project
project_root/
bin/
src/
Makefile
- creates
bin/
folder at project root .cpp
files located insrc/
are built into.o
files and placed inbin/
.o
files 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 && make
if 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