Hey,

WHen i load Dev-C++ a box comes up and says "There doesn't seem to be a GNU Make File in Path or in Dev-C++'s bin... " how do i make a GNU Make File?

wilko1995

Dani AI

Generated

Quick clarification: the popup is complaining that Dev-C++ cannot find the GNU "make" program, not that you must write a Makefile. , you do not need to "make a GNU Make File" — you need a GNU make executable (often shipped as mingw32-make.exe or make.exe) available to Dev-C++. 's link helped resolve this for you; below is a concise checklist and troubleshooting tips so others with the same message can fix it reliably.

Checklist to fix the error

  • Look for a make executable in your Dev-C++ installation (for example Dev-Cpp\MinGW\bin\mingw32-make.exe or Dev-Cpp\bin\make.exe).
  • If found, either add that bin folder to your Windows PATH (System -> Advanced -> Environment Variables) or tell Dev-C++ exactly where it is: Tools -> Compiler Options -> Programs -> set the Make program to the full path of the make executable. Restart Dev-C++ after changing PATH.
  • If not present, install a MinGW/TDM-GCC toolchain that includes mingw32-make, or obtain a Windows GNU make binary and place it in a bin folder that is on PATH (or in Dev-C++'s bin). Prefer configuring the Make program path over renaming files.

Quick checks and troubleshooting

  • From a Command Prompt try:
    mingw32-make --version
    where make
    where mingw32-make
  • If commands fail, PATH or installation is missing. Avoid simply renaming executables unless you understand the consequences; configuring Dev-C++ to point to the correct executable is cleaner.
  • If builds still fail after fixing make, verify you installed the matching MinGW packages (compiler + make) and that Dev-C++ is using the same toolchain.

Recommended Answers

All 3 Replies

no probs
Cheers

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.