This tag is for questions about `gmake`, the GNU version of the `make` utility to maintain and update programs.
In my makefile, I have a variable 'NDK_PROJECT_PATH', my question is how can I print it out when …
makefile gnu-makeI have a several Makefiles in app specific directories like this: /project1/apps/app_typeA/Makefile /project1/apps/app_typeB/…
makefile gnu-make working-directoryI'm following the instructions of someone whose repository I cloned to my machine. What I want is simple: to be …
makefile windows-8 windows-10 gnu-makeCan anybody give a clear explanation of how variable assignment really works in Makefiles. What is the difference between : VARIABLE = …
makefile gnu-makeFor example, I have something like this in my makefile: all: cd some_directory But when I typed make I …
makefile gnu-makeI have the following makefile for my project, and I'd like to configure it for release and debug builds. In …
makefile gnu-makeI use CMake with GNU Make and would like to see all commands exactly (for example how the compiler is …
cmake gnu-makeIn my GNUmakefile, I would like to have a rule that uses a temporary directory. For example: out.tar: TMP := $(…
makefile gnu-makeI'm getting some unexpected results calling one makefile from another. I have two makefiles, one called /path/to/project/makefile …
makefile gnu-make