Tagged Questions

This tag is for questions about `gmake`, the GNU version of the `make` utility to maintain and update programs.

learn more… | top users | synonyms

18
votes
6answers
13k views

How can I configure my makefile for debug and release builds?

I have the following makefile for my project, and I'd like to configure it for release and debug builds. In my code, I have lots of #ifdef DEBUG macros in place, so it's simply a matter of setting ...
13
votes
6answers
1k views

Why use build tools like Autotools when we can just write our own makefiles?

Recently, I switched my development environment from Windows to Linux. So far, I have only used Visual Studio for C++ development, so many concepts, like make and Autotools, are new to me. I have read ...
12
votes
3answers
1k views

Using Cmake with GNU Make: How can I see the exact commands?

I use Cmake with GNU Make and would like to see all commands exactly (for example how the compiler is executed, all the flags etc) GNU make has --debug, but it does not seem to be that helpful are ...
8
votes
8answers
3k views

List goals/targets in GNU make

I have a fairly large makefile that creates a number of targets on the fly by computing names from variables. (eg foo$(VAR) : $(PREREQS)). Is there any way that gnu make can be convinced to spit out ...
7
votes
2answers
2k views

Recursive wildcards in GNU make?

It's been a while since I've used make, so bear with me... I've got a directory, flac, containing .FLAC files. I've got a corresponding directory, mp3 containing MP3 files. If a FLAC file is newer ...
7
votes
2answers
1k views

Escaping in makefile

I'm trying to do this in a makefile and it fails horribly: M_ARCH := $(shell g++ -dumpmachine | awk '{split($1,a,"-");print a[1]}') do you know why? I guess it has to do with escaping, but what and ...
7
votes
1answer
2k views

Define make variable at rule execution time

In my GNUmakefile, I would like to have a rule that uses a temporary directory. For example: out.tar: TMP := $(shell mktemp -d) echo hi $(TMP)/hi.txt tar -C $(TMP) cf $@ . rm ...
6
votes
1answer
83 views

How can I present a git SHA1 to gnu make?

I put together tarball'd releases of software that include the output from several different projects. These tarballs themselves are considered a release. The released tarball includes a BOM (bill ...
6
votes
6answers
371 views

Makefile profiling

So I have this Makefile based build system that my users feel is working too slowly. For the sake of this question lets define performance as the time it takes make to figure out what it should ...
6
votes
1answer
114 views

How do I see the commands that are run by GNU make?

I'm trying to debug a complex Makefile. How do you get GNU make to print all the commands it runs? I couldn't find the answer in the man page (using the -d flag doesn't seem to print it). (This ...
6
votes
4answers
3k views

GNU make's -j option

Ever since I learned about -j I've used -j8 blithely. The other day I was compiling an atlas installation and the make failed. Eventually I tracked it down to things being made out of order - and it ...
5
votes
1answer
150 views

Backtrace for GNU make

Is there any way to get GNU make to print a "backtrace" of the targets that led to the command being executed when it fails? I regularly deal with heavily obfuscated makefiles while resolving ...
5
votes
2answers
485 views

Out of tree builds with makefiles and static pattern rules

I'm working on some bare-metal embedded code that runs on ARM, and thus has to deal with the whole ARM vs. THUMB mode distinction. The current build system uses static pattern rules to determine ...
5
votes
3answers
930 views

Make (Parallel Jobs) on Windows

What setup works for GNU make parallel jobs (-j) on Windows? I have tried setting the shell to cmd.exe using MinGW make 3.81, this works in creating the multiple processes but make fails with the ...
4
votes
6answers
78 views

Tips to make builds faster

Is there any way to make software builds / compilation faster ? We have a build tree c, c++ using makefile that takes close to 2Hrs for fresh builds. I came across few commercial solutions like ...
4
votes
2answers
181 views

GNU make: Multiple targets in a single rule

If I have a Makefile rule like this: a b c: echo "Creating a b c" touch a b c output: a b c cat a b c > output and I run make -j9 output make sees the 3 dependencies (a,b,c), looks ...
4
votes
2answers
165 views

How to handle shell expansions in GNU Make under Ubuntu?

Given this very simple Makefile: all: @mkdir -pv test/{a,b} I get this output on OS X 10.6.8 and CentOS 5.5: mkdir: created directory `test' mkdir: created directory `test/a' mkdir: created ...
4
votes
1answer
183 views

GNU make: Extracting argument to -j within Makefile

I've been searching for an hour, and this information appears to be nowhere... I'd like to be able to extract (and possibly use) the number of requested make "jobs," as passed via the -j option, or ...
4
votes
1answer
1k views

How do you get the list of targets in a makefile?

I've used rake a bit (a Ruby make program), and it has an option to get a list of all the available targets, eg > rake --tasks rake db:charset # retrieve the charset for your data... rake ...
4
votes
1answer
162 views

is it possible to have multiple .PHONY targets in a gnu makefile?

For various reasons, it would be convenient for me to specify .PHONY in multiple parts of a makefile. I feel like I'm not correctly understanding how this works, but is this possible? Instead of ...
4
votes
2answers
1k views

Using GNU Make to build both debug and release targets at the same time

I'm working on a medium sized project which contains several libraries with interdependence's which I've recently converted over to build using a non-recursive makefile. My next goal is to enable ...
4
votes
3answers
452 views

Why does this makefile execute a target on 'make clean'

This is my current makefile. CXX = g++ CXXFLAGS = -Wall -O3 LDFLAGS = TARGET = testcpp SRCS = main.cpp object.cpp foo.cpp OBJS = $(SRCS:.cpp=.o) DEPS = $(SRCS:.cpp=.d) .PHONY: clean ...
4
votes
1answer
300 views

Generate multiple target using single action/rule

How do I write a rule to generate set of files using a single action. Example: Files x, y, z are generated as a result of single execution of script t.sh which takes file a as input. x y z: a ...
4
votes
2answers
692 views

Compile all C files in a directory into separate programs

Is there a way using GNU Make of compiling all of the C files in a directory into separate programs, with each program named as the source file without the .c extension?
4
votes
3answers
1k views

GNU make: should -j equal number the number of CPU cores in a system?

What is you experience with the make -j flag? There seem to be some controversial if the jobs are supposed to be equal to the numbers of cores, or if you can maximize the build by adding one extra ...
4
votes
2answers
294 views

Make failure in subdirectory make not stopping build

I have a setup where make is going through a bunch of subdirectories and making inside those directories. I would like it to stop the build on a failure immediately. The code snippet below ...
4
votes
2answers
1k views

Append to GNU make variables via command line

I am using a GNU-make Makefile to build a C project with several targets (all, clean, and a few project specific targets). In the process of debugging, I would like to append some flags to a single ...
4
votes
2answers
1k views

Wildcard targets in a Makefile

How can I compact the folllowing Makefile targets? $(GRAPHDIR)/Complex.png: $(GRAPHDIR)/Complex.dot dot $(GRAPHDIR)/Complex.dot -Tpng -o $(GRAPHDIR)/Complex.png $(GRAPHDIR)/Simple.png: ...
4
votes
3answers
377 views

In gnu make, can the prerequisites in a static pattern rule have have different suffixes

Our make file compiles .c source files with a static pattern rule like this: OBJECTS = foo.o bar.o baz.o $(OBJECTS): %.o: %.c $(CC) $< $(C_OPTIONS) -c -o $@ I need to change one of the .c ...
4
votes
1answer
423 views

Automatic variables in the tests of conditionals : GNU Make

I am kind of stuck here. We have two makefiles (A requirement that I can't change) defs.mk : It contains the source file names & their extra compile flags (apart from the standard flags) e.g: ...
4
votes
4answers
468 views

Resources for learning GNUMake?

I'm trying to learn GNUMake for a small project I'm working on. So far, even the "basic" tutorials seem pretty rough and I've yet to make sense of the makefile syntax. Does anyone have some good ...
3
votes
1answer
56 views

What does @: (at symbol colon) mean in a Makefile?

What does the following do in a Makefile? rule: $(deps) @: I can't seem to find this in the make manual.
3
votes
2answers
82 views

How to performance analyse GNU Make files

We have a lot of GNU Make-files. I´d like to time each target used during build to identify any performance bottlenecks. Is there a tool or technique to do this in a convenient and automatic way? I ...
3
votes
1answer
209 views

Defining custom GNU make functions

What is the problem with the dep2 function in the sample code below? dep1 = $(eval makefile_list_$1 := $(MAKEFILE_LIST))$(eval -include $1.mk)$(eval MAKEFILE_LIST := $(makefile_list_$1)) define dep2 ...
3
votes
1answer
651 views

GNU make: Nothing to be done for 'target' VS 'target' is up to date

I am little confused how GNU make decides which message to emit. The makeflie I am using causes Nothing to be done for 'target' messages to be emitted when the target is up do date. But I think ...
3
votes
1answer
112 views

GNU make quoting

Does quoting makes any difference? libmylib.a: ... $(AR) $(ARFLAGS) $@ $? # vs libmylib.a: ... "$(AR) $(ARFLAGS) $@ $?" @echo Compiler: $(CXX) # vs @echo "Compiler: $(CXX)" Thanks!
3
votes
2answers
742 views

How can I fix this fatal exception?

I am porting my C/C++ code into an Android Game using the NDK, but I'm having trouble getting started. I have downloaded the NDK-r5b from developer.android.com and I have installed Cygwin. I am not ...
3
votes
1answer
709 views

Has someone successfully compiled freetype with MinGW/MSYS?

I am unsucessful trying to compile freetype with MinGW/MSYS Here's what I do: From cmd.exe I switch in to MSYS: C:\temp\freetype-2.3.5-1\src\freetype\2.3.5\freetype-2.3.5>bash And then call ...
3
votes
1answer
409 views

Making make print commands before executing

I'm working on a large C++ project built with cmake on linux. Cmake runs okay, producing a horde of Makefiles in the tree of modules and applications. Running gnu make leads to linker errors. How ...
3
votes
5answers
398 views

What does the bash command “rm *~” do?

Does the bash command rm *~ just remove files ending in tilde or is there a more advanced bash or gnu make pattern here? Google does not seem able to search for this two symbol combination. I found ...
3
votes
1answer
362 views

Creating several precompiled header files using GNU make

I use gcc (running as g++) and GNU make. I use gcc to precompile a header file precompiled.h, creating precompiled.h.gch; the following line in a Makefile does it: # MYCCFLAGS is a list of ...
3
votes
4answers
233 views

How can I tell if a makefile is being run from an interactive shell?

I have a makefile which runs commands that can take a while. I'd like those commands to be chatty if the build is initiated from an interactive shell but quieter if not (specifically, by cron). ...
3
votes
5answers
423 views

Disable make builtin rules and variables from inside the make file

I want to disable builtin rules and variables as per passing the -r and -R options to GNU make, from inside the make file. Other solutions that allow me to do this implicitly and transparently are ...
3
votes
2answers
174 views

What do @, - and + do as prefixes to recipe lines in Make?

In the GNU Makefile manual, it mentions these prefixes. If .ONESHELL is provided, then only the first line of the recipe will be checked for the special prefix characters (‘@’, ‘-’, and ‘+’). ...
3
votes
1answer
360 views

Detecting (non-)GNU Make when someone runs `make`

I have a project whose makefile uses features exclusive to GNU Make. Sadly, there are platforms we must support where GNU make is still not the default when running make. One of my colleagues was ...
3
votes
2answers
503 views

Force gnu make to rebuild objects affected by compiler definition

I have a makefile that takes options at the command line make OPTION_1=1 Based on the value it will add additional compiler definitions to a subset of objects. ifeq ($(OPTION_1), 1) CC_FLAGS += ...
3
votes
2answers
1k views

GNU Makefile: multiple outputs from single rule + preventing intermediate files from being deleted

This is sort of a continuation of question from here. The problem is that there is a rule generating multiple outputs from a single input, and the command is time-consuming so we would prefer to avoid ...
3
votes
3answers
581 views

How to make automake less ugly?

I recently learned how to use automake, and I'm somewhat annoyed that my compile commands went from a bunch of: g++ -O2 -Wall -c fileName.cpp To a bunch of: depbase=`echo src/Unit.o | sed ...
3
votes
1answer
1k views

GNU Make: How to call $(wildcard) within $(eval)

I'm trying to create a generic build template for my Makefiles, kind of like they discuss in the eval documentation. I can't seem to get the wildcard function to work within an eval. The basic code ...
3
votes
3answers
2k views

How to have gnu make continue after error?

After years of not using make, I find myself needing it again, the gnu version now. I'm pretty sure I should be able to do what I want, but haven't figured out how, or found an answer with Google, ...

1 2 3 4 5 6