Welcome to mirror list, hosted at ThFree Co, Russian Federation.

make.h « make « action « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ac8e438dea0be82c49ac9a339356602635faab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * \file   make.h
 * \brief  Support functions for the makefile action.
 * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
 */
#if !defined(PREMAKE_MAKE_H)
#define PREMAKE_MAKE_H

#include "session/session.h"

const char* make_get_obj_filename(const char* filename);
const char* make_get_project_makefile(Session sess, Project prj);
Strings     make_get_project_names(Solution sln);
const char* make_get_solution_makefile(Session sess, Solution sln);

#endif