Add --simple flag which generates a simple Makefile

This commit is contained in:
Thraix
2019-10-05 16:51:43 +02:00
parent 6b2b83d25c
commit ec98ddbfd4
9 changed files with 50 additions and 18 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ struct FileUtils
// Remove the 'from' path
return to.substr(from.size()+1);
}
// Check if the directory is a child of from
// Check if the directory is a child of from
else if(strncmp(from.c_str(), to.c_str(), to.size()) == 0)
{
std::string sub = from.substr(to.size());