This tag is for questions about `gmake`, the GNU version of the `make` utility to maintain and update programs.
Ever since I learned about -j I've used -j8 blithely. The other day I was compiling an atlas installation and …
gnu-makeIn a makefile, the dependency line is of the form - abc: x y z All three of the components (…
makefile gnu-makeHow can I list the current value of all variables (also called macros) in a Makefile when running make? E.…
makefile gnu-makePossible Duplicate: GNU Makefile rule generating a few targets from a single source file If I have a Makefile rule …
makefile gnu-makeI want to use the include directive only for a specific target. I do not want to run the other …
makefile gnu-makeI have a GNU Makefile (version 3.81) that looks like the following: .PHONY: SPOneDot SPOneDot: ifndef X X=0.05 $$(info X undefined, …
makefile conditional environment-variables gnu-makeIn my Makefile I need to get a list of all directories present in some other directory. To get a …
makefile wildcard gnu-makeI'd like to get the current directory during a GNUmake file run put into a make variable. What is the …
makefile gnu-makeThis is a followup to my earlier question: SO 4403861 because the suggested solutions broke the dependencies, making the makefile useless. …
makefile rules gnu-make