Example #1
0
        /// <summary>
        /// Constructor.
        /// </summary>
        private MakefileBuilder(SolutionInfo solution)
        {
            m_solution = solution;

            // We create the 'master' solution makefile...
            createSolutionMakefile();

            // We create a makefile for each project in the solution...
            createProjectMakefiles();
        }
Example #2
0
 /// <summary>
 /// Creates a makefile for the solution passed in.
 /// </summary>
 public static void createMakefile(SolutionInfo solution)
 {
     new MakefileBuilder(solution);
 }