This tag is for questions about `gmake`, the GNU version of the `make` utility to maintain and update programs.
I know that the @ prefix suppresses output from a shell command in Makefiles, and also that the - prefix will …
makefile gnu-makeI'm working on a large C++ project built with CMake on Linux. CMake runs okay, producing a horde of Makefiles …
linux cmake gnu-makeIn my Makefile, I need to test if the current directory is an SVN repo or not and if it …
shell makefile return-value gnu-makeIs there a way to remove a prefix from a string (a pathname in my case) in make? As an …
makefile gnu-makeAlright I am stuck on this and I have no idea what I am doing wrong. Everything was going great …
makefile syntax-error gnu-makeI can set number of threads for the build process using -j argument. For example, I have 4 cores +4 virtual. When …
linux makefile build gnu-make parallel-buildsHow to get the invoking target of the GNU make Makefile? for example, I invoke make with the following command …
makefile gnu gnu-makeHow do I make this work? It errors out with "make: somevariable: Command not found" sometarget: somevariable = somevalue Full example: …
makefile gnu-makeI'm trying to create a Makefile which places my .o files in a different directory than my source files. I'm …
makefile gnu-make