~efargaspro/+junk/codeblocks-16.01-release

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * This file is part of the FortranProject plugin for Code::Blocks IDE
 * and licensed under the GNU General Public License, version 3
 * http://www.gnu.org/licenses/gpl-3.0.html
 *
 * Author: Darius Markauskas
 *
 */

#ifndef MAKEFILEGEN_H
#define MAKEFILEGEN_H

#include <cbproject.h>
#include "projectdependencies.h"

class MakefileGen
{
    public:
        static void GenerateMakefile(cbProject* project, ProjectDependencies* projDep, NativeParserF* pNativeParser);

    private:
};

#endif // MAKEFILEGEN_H