Reputation: 6058
Our teacher requires us to submit a makefile with our Homeworks. What exactly is the use of a makefile and how can I go about generating it through code blocks ?
Upvotes: 0
Views: 446
Reputation:
These are Makefiles. They serve as a guide for the make
utility to build one's project. You typically "generate" one by knowing its syntax and writing it using a code editor.
Upvotes: 1