How to Write a Simple Makefile
What is a Makefile? Why do we need a Makefile? To compile a C file normally, you can just type the command: gcc hello.c -o hello That’s it. If there are just a few more files, adding them in gcc isn’t a big deal. However, if you have a complete project that contains thousands or … Read more