How to set up 'make' on Windows [Tutorial]

Опубликовано: 21 Март 2026
на канале: PascalLandau
134,825
953

Small tutorial on setting up make on windows. Needed that for a tutorial on Docker I'm currently working on and thought it was easier to just make a small video instead of using screenshots.

Steps:
Set up 'mingw-get' (basically 'apt-get')
Download: https://sourceforge.net/projects/ming...
Install and add the 'bin/' directory to 'PATH' (see https://www.pascallandau.com//blog/ph... )
Install 'mingw32-make' via 'mingw-get install mingw32-make'
Create the file 'bin/make' with the content 'mingw32-make.exe $*'
Open a new shell and type 'make'