soniccool
soniccool

Reputation: 6058

Codeblocks Windows and makefile generation C++

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

Answers (1)

user529758
user529758

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

Related Questions