1 
2 /*
3  * This file is part of the FortranProject plugin for Code::Blocks IDE
4  * and licensed under the GNU General Public License, version 3
5  * http://www.gnu.org/licenses/gpl-3.0.html
6  *
7  * Author: Darius Markauskas
8  *
9  */
10 
11 #ifndef MAKEFILEGEN_H
12 #define MAKEFILEGEN_H
13 
14 #include <sdk.h>
15 #ifndef CB_PRECOMP
16     #include <cbproject.h>
17 #endif
18 
19 #include "projectdependencies.h"
20 
21 class MakefileGen
22 {
23     public:
24         static void GenerateMakefile(cbProject* project, ProjectDependencies* projDep, NativeParserF* pNativeParser);
25 
26     private:
27         static bool SelectMikefileName(wxFileName& mffn);
28 };
29 
30 #endif // MAKEFILEGEN_H
31