How to install and use "make" in Windows?

Hashem Elezabi

I'm following the instructions of someone whose repository I cloned to my machine. What I want is simple: to be able to use the make command as part of setting up the code environment. But I'm using Windows, and I searched online only to find a make.exe file to download, a make-4.1.tar.gz file to download (I don't know what to do with it next), and things about downloading MinGW (for GNU; but after installing it I didn't find any mention of "make").

I don't want a GNU compiler or related stuff; I only want to use "make" in Windows. Please tell me what I should do to accomplish that.

Thanks in advance!

Eduardo Yáñez Parareda

make is a GNU command so the only way you can get it on Windows is installing a Windows version like the one provided by GNUWin32. Anyway, there are several options for getting that:

  1. Using MinGW, be sure you have C:\MinGW\bin\mingw32-make.exe. Otherwise you're missing the mingw32-make additional utilities. Look for the link at MinGW's HowTo page to get it installed. Once you've got it, you have two choices:
  • 1.1 Copy the MinGW make executable to make.exe:

    copy c:\MinGW\bin\mingw32-make.exe c:\MinGW\bin\make.exe
    
  • 1.2 Create a link to the actual executable, in your PATH. In this case, if you update MinGW, the link is not deleted:

    mklink c:\bin\make.exe C:\MinGW\bin\mingw32-make.exe
    
  1. Other option is using Chocolatey. First you need to install this package manager. Once installed you simlpy need to install make:

    choco install make
    
  2. Last option is installing a Windows Subsystem for Linux (WSL), so you'll have a Linux distribution of your choice embedded in Windows 10 where you'll be able to install make, gccand all the tools you need to build C programs.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to install GNU make in Windows 7?

From Dev

How to use make without an install.txt

From Dev

How to use make install or uninstall inside a makefile?

From Java

How do I install and use curl on Windows?

From Dev

How to install and use bower in windows 7

From Dev

how to install dependencies or use composer at all in windows

From Dev

How to install and use Babel and watchers in PhpStorm on Windows?

From Dev

How to make Inno Setup installers install only on server versions of Windows

From Dev

How to make Inno Setup installers install only on server versions of Windows

From Dev

How to make a bootable USB and install Windows 10 using only Linux?

From Dev

How to compile and use make command to install this certain program/tool?

From Dev

How to make autoconf use "install" instead of "mkdir -p"?

From Dev

Unable to use make to install Valgrind

From Dev

How to install ImageMagick to use with PHP on Windows 7 (3)

From Dev

How do I install and use MySQLdb for Python 3 on Windows 10?

From Dev

how to install all smartphone drivers on windows computer to use with adb

From Dev

How to make Windows Explorer always use detail view?

From Dev

How to make Windows use different NICs based on URL or IP

From Dev

How to make Windows use always the latest CLR for .Net assemblies?

From Dev

Understanding how to use Icals & Takeown to make changes and reset in Windows 10

From Dev

How to make Windows use D:/ instead of C:/ for Users and AppData folder?

From Dev

How to make Windows Subsystem for Linux use proxied connections?

From Dev

How can I use "make" in windows? mingw32

From Dev

How to install Kafka on Windows?

From Dev

How to install n on Windows?

From Dev

How to install Flask on Windows?

From Dev

How to Install conscript in Windows

From Dev

How to install InfluxDB in Windows

From Dev

how to install Phabricator on windows?

Related Related

  1. 1

    How to install GNU make in Windows 7?

  2. 2

    How to use make without an install.txt

  3. 3

    How to use make install or uninstall inside a makefile?

  4. 4

    How do I install and use curl on Windows?

  5. 5

    How to install and use bower in windows 7

  6. 6

    how to install dependencies or use composer at all in windows

  7. 7

    How to install and use Babel and watchers in PhpStorm on Windows?

  8. 8

    How to make Inno Setup installers install only on server versions of Windows

  9. 9

    How to make Inno Setup installers install only on server versions of Windows

  10. 10

    How to make a bootable USB and install Windows 10 using only Linux?

  11. 11

    How to compile and use make command to install this certain program/tool?

  12. 12

    How to make autoconf use "install" instead of "mkdir -p"?

  13. 13

    Unable to use make to install Valgrind

  14. 14

    How to install ImageMagick to use with PHP on Windows 7 (3)

  15. 15

    How do I install and use MySQLdb for Python 3 on Windows 10?

  16. 16

    how to install all smartphone drivers on windows computer to use with adb

  17. 17

    How to make Windows Explorer always use detail view?

  18. 18

    How to make Windows use different NICs based on URL or IP

  19. 19

    How to make Windows use always the latest CLR for .Net assemblies?

  20. 20

    Understanding how to use Icals & Takeown to make changes and reset in Windows 10

  21. 21

    How to make Windows use D:/ instead of C:/ for Users and AppData folder?

  22. 22

    How to make Windows Subsystem for Linux use proxied connections?

  23. 23

    How can I use "make" in windows? mingw32

  24. 24

    How to install Kafka on Windows?

  25. 25

    How to install n on Windows?

  26. 26

    How to install Flask on Windows?

  27. 27

    How to Install conscript in Windows

  28. 28

    How to install InfluxDB in Windows

  29. 29

    how to install Phabricator on windows?

HotTag

Archive