Answers for "how to run makefile in windows"

2

how to run makefile in windows

// Install Chocolatey

// Install cygwin
choco install make --source=cygwin

// add variable to path
"C:\tools\cygwin\bin"
Posted by: Guest on December-10-2020
0

how to run makefile on windows

#include <iostream>

using namespace std;

int main() {
	cout << "If you are doing this with c/c++(mingw) try checking out this video! https://youtu.be/taCJhnBXG_w" << endl;
    return 0;
}
//LINK: https://youtu.be/taCJhnBXG_w
Posted by: Guest on October-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language