Top "Makefile" questions

A makefile is an input file for the build control language/tool make.

Hunk #1 FAILED at 1. What's that mean?

I get the following error when running make, and I have no idea what it means or what to do …

makefile cross-compiling vlc
Using local makefile for CLion instead of CMake

Is there a way to configure CLion to use a local makefile to compile code, rather than CMake? I can't …

makefile clion
Make: how to continue after a command fails?

The command $ make all gives errors such as rm: cannot remove '.lambda': No such file or directory so it …

makefile
How do I capture all of my compiler's output to a file?

I'm building an opensource project from source (CPP) in Linux. This is the order: $CFLAGS="-g Wall" CXXFLAGS="-g Wall" ../…

linux shell g++ makefile io-redirection
Compile multiple C files with make

(I am running Linux Ubuntu 9.10, so the extension for an executable is executablefile.out) I am just getting into modular …

c makefile compilation modular
What does "make oldconfig" do exactly in the Linux kernel makefile?

Can anyone explain what the target "oldconfig" does exactly in the Linux kernel makefile? I see it referenced in some …

linux makefile linux-kernel
ldconfig error: is not a symbolic link

When running: sudo /sbin/ldconfig the following error appears: /sbin/ldconfig: /usr/local/lib/ is not a symbolic link When …

linux linker makefile gnu-make
Error in make command makefile:18: *** missing separator. Stop

For the following make file copied below, I am getting the missing separator error. Nothing seems to be wrong with …

makefile gnu-make
NDK can't find the application directory

When running the ndk-build command I get the following error: Android NDK: Could not find application project directory ! Android NDK: …

android-ndk makefile
How I could add dir to $PATH in Makefile?

I want to write a Makefile which would run tests. Test are in a directory './tests' and executable files …

linux makefile